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

Method list

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

Source from the content-addressed store, hash-verified

451 get<T = unknown>(key: string, options?: DurableObjectGetOptions): Promise<T | undefined>;
452 get<T = unknown>(keys: string[], options?: DurableObjectGetOptions): Promise<Map<string, T>>;
453 list<T = unknown>(options?: DurableObjectListOptions): Promise<Map<string, T>>;
454 put<T>(key: string, value: T, options?: DurableObjectPutOptions): Promise<void>;
455 put<T>(entries: Record<string, T>, options?: DurableObjectPutOptions): Promise<void>;
456 delete(key: string, options?: DurableObjectPutOptions): Promise<boolean>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected