UNPKG

488 BTypeScriptView Raw
1/// <reference types="chai" />
2
3declare namespace Chai {
4 interface Assertion {
5 dom: Assertion;
6 lightDom: Assertion;
7 shadowDom: Assertion;
8 notEqual(actual: Object, expected: Object, message?: string): void;
9 equalSnapshot(options?: Object): Assertion;
10 notEqualSnapshot(options?: Object): Assertion;
11 }
12
13 interface Assert {
14 dom: Assertion;
15 lightDom: Assertion;
16 shadowDom: Assertion;
17 equalSnapshot(fixture: any, options?: Object): Assertion;
18 }
19}