dns-witch.net.eu.org/node_modules/liquidjs/dist/fs/map-fs.d.ts

14 lines
432 B
TypeScript
Raw Normal View History

2025-07-05 16:19:59 +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;
}