mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
17 lines
374 B
TypeScript
17 lines
374 B
TypeScript
import type { ElementContext, ImpactValue, RunOptions, Spec } from 'axe-core';
|
|
|
|
export interface Setup {
|
|
element?: ElementContext;
|
|
config: Spec;
|
|
options: RunOptions;
|
|
}
|
|
|
|
export interface A11yParameters {
|
|
element?: ElementContext;
|
|
config?: Spec;
|
|
options?: RunOptions;
|
|
/** @deprecated Use globals.a11y.manual instead */
|
|
manual?: boolean;
|
|
disable?: boolean;
|
|
}
|