MCPcopy
hub / github.com/authts/oidc-client-ts / StateStore

Interface StateStore

src/StateStore.ts:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2 * @public
3 */
4export interface StateStore {
5 set(key: string, value: string): Promise<void>;
6 get(key: string): Promise<string | null>;
7 remove(key: string): Promise<string | null>;
8 getAllKeys(): Promise<string[]>;
9}

Callers

nothing calls this directly

Implementers 2

WebStorageStateStoresrc/WebStorageStateStore.ts
IndexedDbDPoPStoresrc/IndexedDbDPoPStore.ts

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…