UNPKG

justreact-advanced

Version:
9 lines (7 loc) 224 B
interface prop { name: string; blob: any; type?: "csv" | "excel" | "pdf" | "image" | "zip" | "text" | undefined; } declare const fileSave: ({ name, blob, type }: prop) => void | Uint8Array; export { fileSave };