UNPKG

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