1 | import { ElementContext, Spec, RunOptions } from 'axe-core';
|
2 |
|
3 | declare const PARAM_KEY = "a11y";
|
4 |
|
5 | interface Setup {
|
6 | element?: ElementContext;
|
7 | config: Spec;
|
8 | options: RunOptions;
|
9 | }
|
10 | interface A11yParameters {
|
11 | element?: ElementContext;
|
12 | config?: Spec;
|
13 | options?: RunOptions;
|
14 | manual?: boolean;
|
15 | }
|
16 |
|
17 | export { A11yParameters, PARAM_KEY, Setup };
|