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

Method list

website/worker-configuration.d.ts:466–466  ·  view source on GitHub ↗
(options?: DurableObjectListOptions)

Source from the content-addressed store, hash-verified

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>;
468 put<T>(entries: Record<string, T>, options?: DurableObjectPutOptions): Promise<void>;
469 delete(key: string, options?: DurableObjectPutOptions): Promise<boolean>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected