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

18 lines
365 B
TypeScript

/// <reference types="chai" />
declare namespace Chai {
interface Assertion {
dom: Assertion;
lightDom: Assertion;
shadowDom: Assertion;
equalSnapshot(options?: Object): Assertion;
}
interface Assert {
dom: Assertion;
lightDom: Assertion;
shadowDom: Assertion;
equalSnapshot(fixture: any, options?: Object): Assertion;
}
}