9 lines
284 B
TypeScript
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;
|
|
};
|