9 lines
348 B
TypeScript
9 lines
348 B
TypeScript
/**
|
|
* Gets the first visible element that matches the given selector
|
|
* @param selector - The selector to use to find potential visible elements
|
|
* @returns The first visible element that matches the selector, otherwise undefined
|
|
*
|
|
* @public
|
|
*/
|
|
export declare function getFirstVisibleElementFromSelector(selector: string): Element | undefined;
|