(key: string)
| 3952 | interface LoopbackColoLocalActorNamespace extends ColoLocalActorNamespace {} |
| 3953 | interface SyncKvStorage { |
| 3954 | get<T = unknown>(key: string): T | undefined |
| 3955 | list<T = unknown>(options?: SyncKvListOptions): Iterable<[string, T]> |
| 3956 | put<T>(key: string, value: T): void |
| 3957 | delete(key: string): boolean |
nothing calls this directly
no outgoing calls
no test coverage detected