accessibility-checker
Version:
An automated testing tools for accessibility testing using Puppeteer, Selenium, or Zombie
28 lines (24 loc) • 1.31 kB
TypeScript
/******************************************************************************
Copyright:: 2020- IBM, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*****************************************************************************/
import { IConfigUnsupported } from "../api/IChecker";
export declare class MultiScanData {
Config: IConfigUnsupported;
constructor(config: IConfigUnsupported);
issues_sheet_rows(xlsx_props: any): any;
static checkpoints_string(rule_checkpoints_map: any, rule_id: string): string;
static wcag_string(rule_checkpoints_map: any, rule_id: string): string;
static id_rule_map(xlsx_props: any): Map<any, any>;
static ruleId_checkpoints_map(xlsx_props: any): Map<any, any>;
static get_element(code: string): string;
static format_date(timestamp: string): string;
}