summaryrefslogtreecommitdiff
path: root/node_modules/liquidjs/dist/drop/empty-drop.d.ts
blob: 125550c0fda4a983942aedb6ab7400bc84a27a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Drop } from './drop';
import { Comparable } from './comparable';
export declare class EmptyDrop extends Drop implements Comparable {
    equals(value: any): boolean;
    gt(): boolean;
    geq(): boolean;
    lt(): boolean;
    leq(): boolean;
    valueOf(): string;
    static is(value: unknown): boolean;
}