mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
13 lines
283 B
TypeScript
13 lines
283 B
TypeScript
/// <reference types="chai" />
|
|
|
|
declare namespace Chai {
|
|
interface Assertion {
|
|
accessible(options?: Object): Assertion;
|
|
}
|
|
|
|
interface Assert {
|
|
isAccessible(fixture: any, options?: Object): Assertion;
|
|
isNotAccessible(fixture: any, options?: Object): Assertion;
|
|
}
|
|
}
|