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

12
node_modules/liquidjs/dist/template/output.d.ts generated vendored Normal file
View File

@@ -0,0 +1,12 @@
import { Value } from './value';
import { Arguments, Template, TemplateImpl } from '../template';
import { Context } from '../context/context';
import { Emitter } from '../emitters/emitter';
import { OutputToken } from '../tokens/output-token';
import { Liquid } from '../liquid';
export declare class Output extends TemplateImpl<OutputToken> implements Template {
value: Value;
constructor(token: OutputToken, liquid: Liquid);
render(ctx: Context, emitter: Emitter): IterableIterator<unknown>;
arguments(): Arguments;
}