Initial commit: 11ty website with Fire/Frost branding

This commit is contained in:
The Trinity
2026-04-02 18:39:00 -05:00
commit 40b45dff2e
1646 changed files with 329080 additions and 0 deletions

9
node_modules/liquidjs/dist/fs/fs-impl.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
export declare function exists(filepath: string): Promise<boolean>;
export declare function readFile(filepath: string): Promise<string>;
export declare function existsSync(filepath: string): boolean;
export declare function readFileSync(filepath: string): string;
export declare function resolve(root: string, file: string, ext: string): string;
export declare function fallback(file: string): string | undefined;
export declare function dirname(filepath: string): string;
export declare function contains(root: string, file: string): boolean;
export { sep } from 'path';