UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

8 lines (7 loc) 293 B
/** * @returns The first hidden parent element, or the element itself (if hidden). * If the element is already visible, the function returns `undefined`. * * @param element The reference element. */ export declare const getHiddenParent: (element: HTMLElement) => HTMLElement | undefined;