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

15
node_modules/liquidjs/dist/template/value.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
import { Filter } from './filter';
import { Expression } from '../render';
import type { FilteredValueToken } from '../tokens';
import type { Liquid } from '../liquid';
import type { Context } from '../context';
export declare class Value {
readonly filters: Filter[];
readonly initial: Expression;
/**
* @param str the value to be valuated, eg.: "foobar" | truncate: 3
*/
constructor(input: string | FilteredValueToken, liquid: Liquid);
value(ctx: Context, lenient?: boolean): Generator<unknown, unknown, unknown>;
private getFilter;
}