Files
flights_web_raw/node_modules/focus-lock/dist/es2015/utils/is.d.ts
T

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;