(timestamp: number | Date)
| 602 | interface DurableObjectTransaction { |
| 603 | get<T = unknown>(key: string, options?: DurableObjectGetOptions): Promise<T | undefined>; |
| 604 | get<T = unknown>(keys: string[], options?: DurableObjectGetOptions): Promise<Map<string, T>>; |
| 605 | list<T = unknown>(options?: DurableObjectListOptions): Promise<Map<string, T>>; |
| 606 | put<T>(key: string, value: T, options?: DurableObjectPutOptions): Promise<void>; |
| 607 | put<T>(entries: Record<string, T>, options?: DurableObjectPutOptions): Promise<void>; |
nothing calls this directly
no outgoing calls
no test coverage detected