UNPKG

dropkiq

Version:

Liquid Expressions Simplified

9 lines (8 loc) 262 B
export interface IComparable { 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 IComparable;