UNPKG

294 BTypeScriptView Raw
1import { ElementContext, Spec, RunOptions } from 'axe-core';
2export interface Setup {
3 element?: ElementContext;
4 config: Spec;
5 options: RunOptions;
6}
7export interface A11yParameters {
8 element?: ElementContext;
9 config?: Spec;
10 options?: RunOptions;
11 manual?: boolean;
12}