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) 285 B
import { Drop } from './drop'; import { Comparable } from './comparable'; export declare class NullDrop extends Drop implements Comparable { equals(value: any): boolean; gt(): boolean; geq(): boolean; lt(): boolean; leq(): boolean; valueOf(): null; }