Files
DefinitelyTyped/types/jsx-chai/index.d.ts
2017-08-20 15:37:53 -07:00

20 lines
434 B
TypeScript

// Type definitions for jsx-chai 3.0.0
// Project: https://github.com/bkonkle/jsx-chai
// Definitions by: Philipp Holzer <https://github.com/nupplaphil>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="chai" />
interface JsxChaiStatic {
jsxChai: jsxChaiFunction;
}
interface jsxChaiFunction {
(chai: any, utils: any): void;
}
declare var jsxChai: JsxChaiStatic;
export = jsxChai;