web-blog/node_modules/liquidjs/dist/fs/map-fs.d.ts

14 lines
432 B
TypeScript
Raw Normal View History

2026-05-29 18:34:34 +00:00
export declare class MapFS {
private mapping;
constructor(mapping: {
[key: string]: string;
});
sep: string;
exists(filepath: string): Promise<boolean>;
existsSync(filepath: string): boolean;
readFile(filepath: string): Promise<string>;
readFileSync(filepath: string): string;
dirname(filepath: string): string;
resolve(dir: string, file: string, ext: string): string;
}