mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
14 lines
398 B
TypeScript
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 };
|