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