Files
open-wc/packages/semantic-dom-diff/test/bdd-setup.d.ts
2019-08-18 15:59:58 +02:00

14 lines
398 B
TypeScript

/// <reference path="../chai-dom-diff-plugin.d.ts" />
import chai from 'chai';
type expect = typeof chai.expect;
type assert = typeof chai.assert;
type should = typeof chai.should;
declare function expect(...args: Parameters<expect>): ReturnType<expect>;
declare const assert: assert;
declare function should(...args: Parameters<should>): ReturnType<should>;
export { expect, assert, should };