import { DeepPartial } from '../utils/types'; type InferArray = T extends Array ? U : any; declare module '../expect.types' { interface ArrayExpect { /** * check that the members in second array are present in the first one */ members(value: InferArray[], message?: string): this; same: ArrayExpect; ordered: ArrayExpect; /** * Use partial matching for objects * @example * expect({ a: 1, b: 2 }).to.partially.eql({ a: 1 }); */ partially: ArrayExpect>; } } export {}; //# sourceMappingURL=members.d.ts.map