UNPKG

parse

Version:
10 lines (9 loc) 264 B
declare const StorageController: { async: number; getItem(path: string): string | null; setItem(path: string, value: string): void; removeItem(path: string): void; getAllKeys(): string[]; clear(): void; }; export default StorageController;