12 lines
450 B
TypeScript
12 lines
450 B
TypeScript
|
|
import type { CacheHandler, CacheHandlerContext, CacheHandlerValue } from './';
|
||
|
|
export default class FileSystemCache implements CacheHandler {
|
||
|
|
private fs;
|
||
|
|
private flushToDisk?;
|
||
|
|
private serverDistDir;
|
||
|
|
private appDir;
|
||
|
|
constructor(ctx: CacheHandlerContext);
|
||
|
|
get(key: string, fetchCache?: boolean): Promise<CacheHandlerValue | null>;
|
||
|
|
set(key: string, data: CacheHandlerValue['value']): Promise<void>;
|
||
|
|
private getFsPath;
|
||
|
|
}
|