Files
oh-my-opencode/dist/hooks/rules-injector/storage.d.ts
T

10 lines
335 B
TypeScript
Raw Normal View History

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;