accessibility-checker
Version:
An automated testing tools for accessibility testing using Puppeteer, Selenium, or Zombie
14 lines (13 loc) • 594 B
TypeScript
import { IConfig, IConfigInternal } from "./IConfig.js";
/**
* negative if versionA is less than versionB, positive if versionA is greater than versionB, and zero if they are equal. NaN is treated as 0.
* @param versionA
* @param versionB
*/
export declare function compareVersions(versionA: string, versionB: string): number;
export declare class ACConfigManager {
static setConfig(inConfig?: IConfig | IConfigInternal): Promise<void>;
static getConfig(): Promise<IConfig>;
static getConfigUnsupported(): Promise<IConfigInternal>;
static getConfigNow(): IConfigInternal;
}