fbredius/storybook

View on GitHub
addons/a11y/src/params.ts

Summary

Maintainability
A
0 mins
Test Coverage
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;
}