declare module '../expect.types' { interface NumberExpect { /** * check if actual is greater than expected */ greaterThan(value: T): this; /** * check if actual is greater than expected */ gt(value: T): this; /** * check if actual is greater than expected */ above(value: T): this; } interface DateExpect { /** * check if actual is greater than expected */ greaterThan(value: T): this; /** * check if actual is greater than expected */ gt(value: T): this; /** * check if actual is greater than expected */ above(value: T): this; } } export {}; //# sourceMappingURL=greater-than.d.ts.map