Files
firefrost-website/node_modules/liquidjs/dist/fs/map-fs.d.ts
2026-04-02 18:39:00 -05:00

14 lines
432 B
TypeScript

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;
}