UNPKG

@storybook/addon-a11y

Version:

Test component compliance with web accessibility standards

10 lines (9 loc) 282 B
import { FunctionComponent } from 'react'; import { Result } from 'axe-core'; import { RuleType } from '../A11YPanel'; export interface ReportProps { items: Result[]; empty: string; type: RuleType; } export declare const Report: FunctionComponent<ReportProps>;