(key: string, options?: DurableObjectGetOptions)
| 471 | } |
| 472 | interface DurableObjectStorage { |
| 473 | get<T = unknown>(key: string, options?: DurableObjectGetOptions): Promise<T | undefined>; |
| 474 | get<T = unknown>(keys: string[], options?: DurableObjectGetOptions): Promise<Map<string, T>>; |
| 475 | list<T = unknown>(options?: DurableObjectListOptions): Promise<Map<string, T>>; |
| 476 | put<T>(key: string, value: T, options?: DurableObjectPutOptions): Promise<void>; |
nothing calls this directly
no outgoing calls
no test coverage detected