Initial commit: 11ty website with Fire/Frost branding
This commit is contained in:
13
node_modules/liquidjs/dist/fs/map-fs.d.ts
generated
vendored
Normal file
13
node_modules/liquidjs/dist/fs/map-fs.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user