You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the axe.d.ts file has three optional parameters, however, the run function handles internally providing the callback on it's own.
axe.run(callback);
The recommended approaches I have found say use undefined for the optionals, however this causes issues with normalizeRunParams() that determines which parameter you are passing in.
I suggest adding overloads to the axe.d.ts file to solve this.
The text was updated successfully, but these errors were encountered:
the axe.d.ts file has three optional parameters, however, the run function handles internally providing the callback on it's own.
axe.run(callback);
The recommended approaches I have found say use
undefined
for the optionals, however this causes issues withnormalizeRunParams()
that determines which parameter you are passing in.I suggest adding overloads to the axe.d.ts file to solve this.
The text was updated successfully, but these errors were encountered: