Returns the current value associated with the given key, or null if the given key does not exist.
(key: string)
| 12 | clear(): Promise<void>; |
| 13 | /** Returns the current value associated with the given key, or null if the given key does not exist. */ |
| 14 | getItem(key: string): Promise<string | null>; |
| 15 | /** Returns the name of the nth key, or null if n is greater than or equal to the number of key/value pairs. */ |
| 16 | key(index: number): Promise<string | null>; |
| 17 | /** |
no outgoing calls
no test coverage detected