// Type definitions for chai-subset 1.0.0 // Project: https://github.com/e-conomic/chai-subset // Definitions by: Sam Noedel , Andrew Brown // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// declare namespace Chai { interface Assertion { containSubset(obj: Object): Assertion; } } declare module "chai-subset" { function chaiSubset(chai: any, utils: any): void; namespace chaiSubset {} export = chaiSubset; }