mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* chai: Add types for chai.use and chai.util Helps developers write Chai plugins; requested in #29922. Closes #29922. * Updated dependencies on Chai - Minimum TS version: 3.0 - Version bumps to TS 3.0 for the following type definitions which depend on chai directly or indirectly: bardjs, chai, chai-almost, chai-arrays, chai-as-promised, chai-datetime, chai-dom, chai-enzyme, chai-fs, chai-fuzzy, chai-jest-snapshot, chai-jquery, chai-json-schema, chai-moment, chai-oequal, chai-roughly, chai-spies, chai-string, chai-subset, chai-things, chai-uuid, chai-webdriverio, chai-xml, d3kit, deep-equal-in-any-order, dirty-chai, ember-mocha, hexo, hexo-log, hexo-util, jsx-chai, karma-chai, karma-chai-sinon, redux-test-utils, and sinon-chai - Use Chai.ChaiPlugin instead of (chai: any, utils: any) => void * Factor out pathval types - Forgot that the pathval types aren't merged yet * Factor out pathval types - Forgot that the pathval types aren't merged yet * Make 'chainingBehavior' non-mandatory
31 lines
802 B
TypeScript
31 lines
802 B
TypeScript
// Type definitions for chai-json-schema 1.4
|
|
// Project: https://github.com/chaijs/chai-json-schema/, http://chaijs.com
|
|
// Definitions by: Ulrich Heiniger <https://github.com/ulrichheiniger>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.0
|
|
|
|
// <reference types="node"/>
|
|
// <reference types="chai" />
|
|
import tv4 = require('tv4');
|
|
|
|
declare global {
|
|
namespace Chai {
|
|
interface Assert {
|
|
jsonSchema(value: any, schema: any, msg?: string): void;
|
|
notJsonSchema(value: any, schema: any, msg?: string): void;
|
|
}
|
|
|
|
interface LanguageChains {
|
|
jsonSchema(schema: any, msg?: string): void;
|
|
}
|
|
|
|
interface ChaiStatic {
|
|
tv4: tv4.TV4;
|
|
}
|
|
}
|
|
}
|
|
|
|
declare const chaiJsonSchema: Chai.ChaiPlugin;
|
|
declare namespace chaiJsonSchema { }
|
|
export = chaiJsonSchema;
|