declare module '../expect.types' { interface DateExpect { /** * check if date is between other dates * @param start * @param end */ between(start: Date, end: Date, inclusive?: boolean): this; } interface NumberExpect { /** * check if number is between other numbers * @param start * @param end * @param inclusive */ between(start: number, end: number, inclusive?: boolean): this; } } export {}; //# sourceMappingURL=between.d.ts.map