summaryrefslogtreecommitdiff
path: root/node_modules/liquidjs/dist/drop/comparable.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/liquidjs/dist/drop/comparable.d.ts')
-rw-r--r--node_modules/liquidjs/dist/drop/comparable.d.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/node_modules/liquidjs/dist/drop/comparable.d.ts b/node_modules/liquidjs/dist/drop/comparable.d.ts
new file mode 100644
index 0000000..fc0e1e0
--- /dev/null
+++ b/node_modules/liquidjs/dist/drop/comparable.d.ts
@@ -0,0 +1,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;