1234567891011121314151617 |
- import { ElementContext, Spec, RunOptions } from 'axe-core';
- declare const PARAM_KEY = "a11y";
- interface Setup {
- element?: ElementContext;
- config: Spec;
- options: RunOptions;
- }
- interface A11yParameters {
- element?: ElementContext;
- config?: Spec;
- options?: RunOptions;
- manual?: boolean;
- }
- export { A11yParameters, PARAM_KEY, Setup };
|