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
/** * Runs a number of rules against the provided HTML page and returns the resulting issue list * * @param {Object} context Optional The `Context` specification object @see Context * @param {Array} options Optional Options passed into rules or checks, temporarily modifying them. * @param {Function} callback Optional The function to invoke when analysis is complete. * @returns {any} results If the callback was not defined, aXe will return a Promise instead. */functionrun(context?: ElementContext,options?: {runOnly?: RunOnly,rules?: Object,iframes?: Boolean,elementRef?: Boolean,selectors?: Boolean},callback?: (error: Error,results:AxeResults)=>void): any/** * Starts analysis on the current document and its subframes * * @param {Object} context The `Context` specification object @see Context * @param {Array} options Options passed into rules or checks, temporarily modifyint them. * @param {Function} callback The function to invoke when analysis is complete. * @returns {Object} results The aXe results object */functiona11yCheck(context: ElementContext,options: {runOnly?: RunOnly,rules?: Object,iframes?: Boolean,elementRef?: Boolean,selectors?: Boolean},callback: (results:AxeResults)=>void): AxeResults
I'm writing types for axe-webdriverjs and it would be useful to include those {...}s directly. I can send a PR to extract them to:
I'm writing types for
axe-webdriverjs
and it would be useful to include those{...}
s directly. I can send a PR to extract them to:The text was updated successfully, but these errors were encountered: