(options?: DurableObjectSetAlarmOptions)
| 468 | getAlarm(options?: DurableObjectGetAlarmOptions): Promise<number | null>; |
| 469 | setAlarm(scheduledTime: number | Date, options?: DurableObjectSetAlarmOptions): Promise<void>; |
| 470 | deleteAlarm(options?: DurableObjectSetAlarmOptions): Promise<void>; |
| 471 | } |
| 472 | interface DurableObjectStorage { |
| 473 | get<T = unknown>(key: string, options?: DurableObjectGetOptions): Promise<T | undefined>; |
nothing calls this directly
no outgoing calls
no test coverage detected