All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
6 lines
278 B
TypeScript
6 lines
278 B
TypeScript
declare const isSVG: (target: Element) => boolean;
|
|
declare const isHidden: (target: Element) => boolean;
|
|
declare const isElement: (obj: unknown) => boolean;
|
|
declare const isReplacedElement: (target: Element) => boolean;
|
|
export { isSVG, isHidden, isElement, isReplacedElement };
|