6 lines
350 B
TypeScript
6 lines
350 B
TypeScript
export declare const isVisible: (node: HTMLElement | undefined) => boolean;
|
|
export declare const notHiddenInput: (node: HTMLInputElement) => boolean;
|
|
export declare const isGuard: (node: HTMLElement) => boolean;
|
|
export declare const isNotAGuard: (node: HTMLElement) => boolean;
|
|
export declare const isDefined: <T>(x: T | null | undefined) => x is T;
|