UNPKG

liquidjs

Version:

A simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript.

7 lines (6 loc) 258 B
import { Drop } from '../drop/drop'; export interface ScopeObject extends Record<string | number | symbol, any> { toLiquid?: () => any; } export type Scope = ScopeObject | Drop; export declare function createScope(from?: ScopeObject): ScopeObject;