Mohammad Asif cf937194cb Removed un-waned things 1. | 5 months ago | |
---|---|---|
.. | ||
LICENSE | 5 months ago | |
README.md | 5 months ago | |
index.d.ts | 5 months ago | |
package.json | 5 months ago |
npm install --save @types/chai-subset
This package contains type definitions for chai-subset (https://github.com/debitoor/chai-subset).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chai-subset.
/// <reference types="chai" />
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;
These definitions were written by Sam Noedel, and Andrew Brown.