declare module '../expect.types' { interface NumberExpect { /** * check if actual is greater than or equal to expected */ greaterThanOrEqual(value: T): this; /** * check if actual is greater than or equal to expected */ gte(value: T): this; /** * check if actual is greater than or equal to expected */ atLeast(value: T): this; } interface DateExpect { /** * check if actual is greater than or equal to expected */ greaterThanOrEqual(value: T): this; /** * check if actual is greater than or equal to expected */ gte(value: T): this; /** * check if actual is greater than or equal to expected */ atLeast(value: T): this; } } export {}; //# sourceMappingURL=greater-than-equal.d.ts.map