You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
290 B
13 lines
290 B
|
2 months ago
|
declare const dataUrl: {
|
||
|
|
parse(
|
||
|
|
dataUrl: string
|
||
|
|
): { data: string; mime: string; charset: string; base64: boolean } | null;
|
||
|
|
stringify(
|
||
|
|
data: any,
|
||
|
|
mime: string,
|
||
|
|
options?: { base64?: boolean; charset?: string }
|
||
|
|
): string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export = dataUrl;
|