axe-core 4.7.2-canary.049522e → 4.7.2-canary.080cc1b

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
@@ -371,7 +371,8 @@ declare namespace axe {
371
371
  type AxeReporter<T = unknown> = (
372
372
  rawResults: RawResult[],
373
373
  option: RunOptions,
374
- callback: (report: T) => void
374
+ resolve: (report: T) => void,
375
+ reject: (error: Error) => void
375
376
  ) => void;
376
377
 
377
378
  interface VirtualNode {