UNPKG

accessibility-checker

Version:

An automated testing tools for accessibility testing using Puppeteer, Selenium, or Zombie

27 lines (26 loc) 913 B
export declare class ACEngineManager { static customRulesets: any[]; static loadEngine(content: any): Promise<any>; static loadEngineLocal(): Promise<void>; static isPuppeteer(content: any): any; static isPlaywright(content: any): boolean; static isSelenium(content: any): boolean; /** * This function is responsible for building the full help file URL using rule server. * * @param {String} helpFileName - Provide the help file name * * @return {String} helpFileName - The full help file URL * * PRIVATE METHOD * * @memberOf this */ static getHelpURL(issue: any): string; static addRuleset: (ruleset: any) => void; static getRuleset: (rsId: any) => Promise<any>; static getRulesets: () => Promise<any[]>; static getChecker(): any; static getRules: () => Promise<any[]>; static getRulesSync: () => any[]; }