UNPKG

liquidjs

Version:

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

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;