MCPcopy Create free account
hub / github.com/cloudflare/mcp / getBookmarkForTime

Method getBookmarkForTime

worker-configuration.d.ts:604–604  ·  view source on GitHub ↗
(timestamp: number | Date)

Source from the content-addressed store, hash-verified

602interface 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>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected