Files
firefrost-website/node_modules/liquidjs/dist/drop/comparable.d.ts
2026-04-02 18:39:00 -05:00

9 lines
268 B
TypeScript

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;