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

Method list

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

Source from the content-addressed store, hash-verified

473 get<T = unknown>(key: string, options?: DurableObjectGetOptions): Promise<T | undefined>;
474 get<T = unknown>(keys: string[], options?: DurableObjectGetOptions): Promise<Map<string, T>>;
475 list<T = unknown>(options?: DurableObjectListOptions): Promise<Map<string, T>>;
476 put<T>(key: string, value: T, options?: DurableObjectPutOptions): Promise<void>;
477 put<T>(entries: Record<string, T>, options?: DurableObjectPutOptions): Promise<void>;
478 delete(key: string, options?: DurableObjectPutOptions): Promise<boolean>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected