@uuv/a11y
Version:
A javascript lib for running a11y validation based on multiple reference(RGAA, etc)
10 lines (9 loc) • 338 B
TypeScript
import { Query, QueryResult } from "./00-query";
export declare class ByRoleQuery implements Query {
readonly role: string;
readonly attributes: string[];
readonly excludedTags: string[];
constructor(role: string, attributes?: string[], excludedTags?: string[]);
execute(): QueryResult[];
getSelector(): string;
}