(path: string)
| 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 | } |
| 11 |
no outgoing calls