| 2 | * @public |
| 3 | */ |
| 4 | export interface StateStore { |
| 5 | set(key: string, value: string): Promise<void>; |
| 6 | get(key: string): Promise<string | null>; |
| 7 | remove(key: string): Promise<string | null>; |
| 8 | getAllKeys(): Promise<string[]>; |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…