element.d.ts 278 B

12345
  1. declare const isSVG: (target: Element) => boolean;
  2. declare const isHidden: (target: Element) => boolean;
  3. declare const isElement: (obj: unknown) => boolean;
  4. declare const isReplacedElement: (target: Element) => boolean;
  5. export { isSVG, isHidden, isElement, isReplacedElement };