mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
18 lines
522 B
TypeScript
18 lines
522 B
TypeScript
// Type definitions for chai-subset 1.0.0
|
|
// Project: https://github.com/e-conomic/chai-subset
|
|
// Definitions by: Sam Noedel <https://github.com/delta62/>, Andrew Brown <https://github.com/AGBrown>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../chai/chai.d.ts" />
|
|
|
|
declare module Chai {
|
|
interface Assertion {
|
|
containSubset(obj: Object): Assertion;
|
|
}
|
|
}
|
|
|
|
declare module "chai-subset" {
|
|
function chaiSubset(chai: any, utils: any): void;
|
|
export = chaiSubset;
|
|
}
|