2022-10-27 19:33:39 -04:00

15 lines
287 B
TypeScript

import type { 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;
}