| 93 | // ============================================================================ |
| 94 | |
| 95 | export interface StorageAdapter { |
| 96 | getItem(key: string): string | null; |
| 97 | setItem(key: string, value: string): void; |
| 98 | removeItem(key: string): void; |
| 99 | clear(): void; |
| 100 | /** Get all keys in storage */ |
| 101 | keys(): string[]; |
| 102 | } |
nothing calls this directly
no outgoing calls
no test coverage detected