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 +2 -1
- package/axe.js +705 -511
- package/axe.min.js +3 -3
- package/locales/_template.json +20 -0
- package/package.json +2 -1
- package/sri-history.json +3 -3
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
|
-
|
|
374
|
+
resolve: (report: T) => void,
|
|
375
|
+
reject: (error: Error) => void
|
|
375
376
|
) => void;
|
|
376
377
|
|
|
377
378
|
interface VirtualNode {
|