forked from helen-dikareva/axe-testcafe
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.d.ts
47 lines (41 loc) · 1.06 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
declare module '@testcafe-community/axe' {
import { ElementContext, RunOnly, AxeResults, Result, Spec } from 'axe-core';
interface AxeCheck {
results: AxeResults;
error?: any;
}
export function runAxe(
context?: ElementContext,
options?: {
runOnly?: RunOnly;
rules?: Object;
iframes?: Boolean;
elementRef?: Boolean;
selectors?: Boolean;
}
): Promise<AxeCheck>;
export function configureAxe(spec: Spec): Promise<void>;
export function axeCheck(
t: TestController,
context?: ElementContext,
options?: {
runOnly?: RunOnly;
rules?: Object;
iframes?: Boolean;
elementRef?: Boolean;
selectors?: Boolean;
}
): Promise<AxeCheck>;
export function createReport(violations: Result[]): string;
export function checkForViolations(
t: TestController,
context?: ElementContext,
options?: {
runOnly?: RunOnly;
rules?: Object;
iframes?: Boolean;
elementRef?: Boolean;
selectors?: Boolean;
}
): never;
}