UNPKG

@startpage/local-storage

Version:

Local storage management for your startpage

7 lines (6 loc) 226 B
export type Backup = { createBlobUrl: () => string; download: (fileName?: string) => void; restore: (backupFile: File) => Promise<boolean>; }; export declare const storageBackup: (keys?: string[]) => Backup;