MCPcopy Create free account
hub / github.com/QuantaAlpha/claude-code / SecureStorage

Interface SecureStorage

src/utils/secureStorage/types.ts:3–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export type SecureStorageData = Record<string, unknown>
2
3export interface SecureStorage {
4 get(key: string): Promise<SecureStorageData | null>
5 set(key: string, value: SecureStorageData): Promise<void>
6 delete(key: string): Promise<void>
7}

Callers 24

interpretCommandResultFunction · 0.65
validateInputFunction · 0.65
searchToolsWithKeywordsFunction · 0.65
callFunction · 0.65
validateInputFunction · 0.65
callFunction · 0.65
callFunction · 0.65
compileTermPatternsFunction · 0.65
callInnerFunction · 0.65

Implementers 1

FileStateCachesrc/utils/fileStateCache.ts

Calls

no outgoing calls

Tested by

no test coverage detected