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.

9 lines (8 loc) 268 B
export interface Comparable { equals: (rhs: any) => boolean; gt: (rhs: any) => boolean; geq: (rhs: any) => boolean; lt: (rhs: any) => boolean; leq: (rhs: any) => boolean; } export declare function isComparable(arg: any): arg is Comparable;