UNPKG

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.

11 lines (10 loc) 249 B
interface TrieInput<T> { [key: string]: T; } export type Trie<T> = { data?: T; end?: true; needBoundary?: true; } & Record<string, any>; export declare function createTrie<T = any>(input: TrieInput<T>): Trie<T>; export {};