axe-core 4.11.2 → 4.11.3-canary.b329a08

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/axe.d.ts CHANGED
@@ -147,6 +147,9 @@ declare namespace axe {
147
147
  performanceTimer?: boolean;
148
148
  pingWaitTime?: number;
149
149
  }
150
+ interface NormalizedRunOptions extends RunOptions {
151
+ runOnly?: RunOnly;
152
+ }
150
153
  interface PreloadOptions {
151
154
  assets: string[];
152
155
  timeout?: number;
@@ -501,6 +504,7 @@ declare namespace axe {
501
504
  offset?: number
502
505
  ) => string | Uint8Array | Array<number>;
503
506
  nodeSerializer: NodeSerializer;
507
+ normalizeRunOptions: (options?: RunOptions) => NormalizedRunOptions;
504
508
  }
505
509
 
506
510
  interface Aria {