(key: string, options?: DurableObjectGetOptions)
| 462 | } |
| 463 | interface DurableObjectStorage { |
| 464 | get<T = unknown>(key: string, options?: DurableObjectGetOptions): Promise<T | undefined>; |
| 465 | get<T = unknown>(keys: string[], options?: DurableObjectGetOptions): Promise<Map<string, T>>; |
| 466 | list<T = unknown>(options?: DurableObjectListOptions): Promise<Map<string, T>>; |
| 467 | put<T>(key: string, value: T, options?: DurableObjectPutOptions): Promise<void>; |
nothing calls this directly
no outgoing calls
no test coverage detected