index.d.ts 362 B

1234567891011121314151617
  1. import { ElementContext, Spec, RunOptions } from 'axe-core';
  2. declare const PARAM_KEY = "a11y";
  3. interface Setup {
  4. element?: ElementContext;
  5. config: Spec;
  6. options: RunOptions;
  7. }
  8. interface A11yParameters {
  9. element?: ElementContext;
  10. config?: Spec;
  11. options?: RunOptions;
  12. manual?: boolean;
  13. }
  14. export { A11yParameters, PARAM_KEY, Setup };