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

10 lines
335 B
TypeScript

export declare function loadInjectedRules(sessionID: string): {
contentHashes: Set<string>;
realPaths: Set<string>;
};
export declare function saveInjectedRules(sessionID: string, data: {
contentHashes: Set<string>;
realPaths: Set<string>;
}): void;
export declare function clearInjectedRules(sessionID: string): void;