summaryrefslogtreecommitdiff
path: root/node_modules/liquidjs/dist/drop/comparable.d.ts
blob: fc0e1e01aef9b3699aa24c532e637f845376ee0c (plain)
1
2
3
4
5
6
7
8
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;