6 lines
316 B
TypeScript
Executable file
6 lines
316 B
TypeScript
Executable file
import type { TmplAstElement } from '@angular/compiler';
|
|
/**
|
|
* Whether an element has the `aria-hidden` property and its value is empty or
|
|
* `true`. It also returns `true` if the element is an `input` with `type="hidden"`.
|
|
*/
|
|
export declare function isHiddenFromScreenReader(node: TmplAstElement): boolean;
|