declare module '../expect.types' { interface StringExpect { /** * check if string ends with other string * @param start * @example endsWith('foo', 'o'); */ endWith(end: string): this; } } export {}; //# sourceMappingURL=end-with.d.ts.map