Norbert de Langen c2bbe43d02
stage0
2022-07-21 11:24:07 +02:00

15 lines
282 B
TypeScript

import { ElementContext, Spec, RunOptions } from 'axe-core';
export interface Setup {
element?: ElementContext;
config: Spec;
options: RunOptions;
}
export interface A11yParameters {
element?: ElementContext;
config?: Spec;
options?: RunOptions;
manual?: boolean;
}