MCPcopy
hub / github.com/simov/grant / GrantSessionStore

Interface GrantSessionStore

grant.d.ts:212–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210 * Grant session store
211 */
212export interface GrantSessionStore {
213 /**
214 * Get item from session store
215 */
216 get: (sid: string) => any
217 /**
218 * Set item in session store
219 */
220 set: (sid: string, json: any) => void
221 /**
222 * Remove item from session store
223 */
224 remove?: (sid: string) => void
225}
226
227// ----------------------------------------------------------------------------
228

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…