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.

12 lines (11 loc) 329 B
import { Drop } from './drop'; import { Comparable } from './comparable'; export declare class EmptyDrop extends Drop implements Comparable { equals(value: any): boolean; gt(): boolean; geq(): boolean; lt(): boolean; leq(): boolean; valueOf(): string; static is(value: unknown): boolean; }