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

24
node_modules/liquidjs/dist/fs/loader.d.ts generated vendored Normal file
View File

@@ -0,0 +1,24 @@
import { FS } from './fs';
export interface LoaderOptions {
fs: FS;
extname: string;
root: string[];
partials: string[];
layouts: string[];
relativeReference: boolean;
}
export declare enum LookupType {
Partials = "partials",
Layouts = "layouts",
Root = "root"
}
export declare class Loader {
shouldLoadRelative: (referencedFile: string) => boolean;
private options;
private contains;
constructor(options: LoaderOptions);
lookup(file: string, type: LookupType, sync?: boolean, currentFile?: string): Generator<unknown, string, string>;
candidates(file: string, dirs: string[], currentFile?: string, enforceRoot?: boolean): Generator<string, void, unknown>;
private dirname;
private lookupError;
}