UNPKG

@zodash/save-as

Version:

Save Blob or Text as File

5 lines (4 loc) 233 B
export declare function isBlob(data: any): boolean; export declare function saveAs(blob: Blob, filename?: string): Promise<void>; export declare function saveAs(text: string, filename?: string): Promise<void>; export default saveAs;