2021-03-20 16:18:05 +01:00
|
|
|
export declare const downloadTextAsFile: (text: string, name: string) => void;
|
2021-04-19 20:27:12 +02:00
|
|
|
export declare const requestFile: (options: {
|
|
|
|
accept?: string;
|
|
|
|
multiple?: boolean;
|
|
|
|
}) => Promise<File[]>;
|
2021-03-20 16:18:05 +01:00
|
|
|
export declare const requestFileAsText: () => Promise<string>;
|