// Type definitions for chai-subset 1.3 // Project: https://github.com/debitoor/chai-subset // Definitions by: Sam Noedel , Andrew Brown // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 3.0 /// declare global { namespace Chai { interface Assertion { containSubset(expected: any): Assertion; } interface Assert { containSubset(val: any, exp: any, msg?: string): void; } } } declare const chaiSubset: Chai.ChaiPlugin; export = chaiSubset;