7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
/*!
|
|
* isElementVisible
|
|
* Adapted from https://github.com/testing-library/jest-dom
|
|
* Licensed under the MIT License.
|
|
*/
|
|
export declare function isElementVisible<T extends Element>(element: T): boolean;
|