8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
|
/**
|
||
|
* Sets the virtual parent of an element.
|
||
|
* Pass `undefined` as the `parent` to clear the virtual parent.
|
||
|
*
|
||
|
* @public
|
||
|
*/
|
||
|
export declare function setVirtualParent(child: HTMLElement, parent: HTMLElement | null): void;
|