Files
oh-my-opencode/dist/hooks/rules-injector/cache.d.ts
T
2026-03-14 04:56:50 +00:00

9 lines
284 B
TypeScript

export type SessionInjectedRulesCache = {
contentHashes: Set<string>;
realPaths: Set<string>;
};
export declare function createSessionCacheStore(): {
getSessionCache: (sessionID: string) => SessionInjectedRulesCache;
clearSessionCache: (sessionID: string) => void;
};