MCPcopy Create free account
hub / github.com/fontsource/fontsource / get

Method get

website/worker-configuration.d.ts:464–464  ·  view source on GitHub ↗
(key: string, options?: DurableObjectGetOptions)

Source from the content-addressed store, hash-verified

462}
463interface 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>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected