(path: string, value: string)
| 5 | export interface Adapter { |
| 6 | read(path: string): Promise<string | undefined> |
| 7 | write(path: string, value: string): Promise<void> |
| 8 | remove(path: string): Promise<void> |
| 9 | list(options?: { prefix?: string; limit?: number; after?: string; before?: string }): Promise<string[]> |
| 10 | } |
no outgoing calls