mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:01:05 +08:00
15 lines
282 B
TypeScript
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;
|
|
}
|