File size: 190 Bytes
5d14125 | 1 2 3 4 5 6 7 | /**
* Uses a MutationObserver to wait for an element to be added to the DOM.
*/
declare function waitForElement(selector: string): Promise<HTMLElement | null>;
export { waitForElement };
|
5d14125 | 1 2 3 4 5 6 7 | /**
* Uses a MutationObserver to wait for an element to be added to the DOM.
*/
declare function waitForElement(selector: string): Promise<HTMLElement | null>;
export { waitForElement };
|