(key: string, value: string)
| 87 | export interface StorageAdapter { |
| 88 | getItem(key: string): string | null; |
| 89 | setItem(key: string, value: string): void; |
| 90 | removeItem(key: string): void; |
| 91 | clear(): void; |
| 92 | /** Get all keys in storage */ |
no outgoing calls
no test coverage detected