isElementVisible.d.ts 205 B

123456
  1. /*!
  2. * isElementVisible
  3. * Adapted from https://github.com/testing-library/jest-dom
  4. * Licensed under the MIT License.
  5. */
  6. export declare function isElementVisible<T extends Element>(element: T): boolean;