MCPcopy Create free account
hub / github.com/idosal/git-mcp / list

Method list

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

Source from the content-addressed store, hash-verified

460 get<T = unknown>(key: string, options?: DurableObjectGetOptions): Promise<T | undefined>;
461 get<T = unknown>(keys: string[], options?: DurableObjectGetOptions): Promise<Map<string, T>>;
462 list<T = unknown>(options?: DurableObjectListOptions): Promise<Map<string, T>>;
463 put<T>(key: string, value: T, options?: DurableObjectPutOptions): Promise<void>;
464 put<T>(entries: Record<string, T>, options?: DurableObjectPutOptions): Promise<void>;
465 delete(key: string, options?: DurableObjectPutOptions): Promise<boolean>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected