Initial commit: 11ty website with Fire/Frost branding
This commit is contained in:
18
node_modules/liquidjs/dist/template/hash.d.ts
generated
vendored
Normal file
18
node_modules/liquidjs/dist/template/hash.d.ts
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Context } from '../context/context';
|
||||
import { Tokenizer } from '../parser/tokenizer';
|
||||
import { Token } from '../tokens/token';
|
||||
type HashValueTokens = Record<string, Token | undefined>;
|
||||
/**
|
||||
* Key-Value Pairs Representing Tag Arguments
|
||||
* Example:
|
||||
* For the markup `, foo:'bar', coo:2 reversed %}`,
|
||||
* hash['foo'] === 'bar'
|
||||
* hash['coo'] === 2
|
||||
* hash['reversed'] === undefined
|
||||
*/
|
||||
export declare class Hash {
|
||||
hash: HashValueTokens;
|
||||
constructor(input: string | Tokenizer, jekyllStyle?: boolean | string);
|
||||
render(ctx: Context): Generator<unknown, Record<string, any>, unknown>;
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user