type ArrayType = T extends (infer U)[] ? U : T; declare module '../expect.types' { interface ArrayExpect { /** * check if array includes element(s) */ include(...elements: ArrayType[]): this; /** * check if array includes element(s) */ contain(...elements: ArrayType[]): this; } interface StringExpect { /** * check if string includes substring(s) */ include(...substrings: string[]): this; /** * check if string includes substring(s) */ contain(...substrings: string[]): this; } } export {}; //# sourceMappingURL=include.d.ts.map