(key: string, options?: DurableObjectGetOptions)
| 449 | } |
| 450 | interface DurableObjectTransaction { |
| 451 | get<T = unknown>(key: string, options?: DurableObjectGetOptions): Promise<T | undefined>; |
| 452 | get<T = unknown>(keys: string[], options?: DurableObjectGetOptions): Promise<Map<string, T>>; |
| 453 | list<T = unknown>(options?: DurableObjectListOptions): Promise<Map<string, T>>; |
| 454 | put<T>(key: string, value: T, options?: DurableObjectPutOptions): Promise<void>; |
nothing calls this directly
no outgoing calls
no test coverage detected