liquidjs
Version:
A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support.
12 lines (11 loc) • 346 B
TypeScript
import { BlankDrop, EmptyDrop, NullDrop } from '../drop';
export declare const literalValues: {
true: boolean;
false: boolean;
nil: NullDrop;
null: NullDrop;
empty: EmptyDrop;
blank: BlankDrop;
};
export type LiteralKey = keyof typeof literalValues;
export type LiteralValue = typeof literalValues[LiteralKey];