1234567891011121314151617181920 |
- export interface ComputeTextAlternativeOptions {
- compute?: "description" | "name";
-
- computedStyleSupportsPseudoElements?: boolean;
- getComputedStyle?: typeof window.getComputedStyle;
- }
- export declare function computeTextAlternative(root: Element, options?: ComputeTextAlternativeOptions): string;
|