(parent: JSX.Element, node: JSX.Element, anchor?: JSX.Element)
| 45 | * If it is already a child of the parent, it will be moved to the specified location. |
| 46 | */ |
| 47 | export function insertNode(parent: JSX.Element, node: JSX.Element, anchor?: JSX.Element): void { |
| 48 | |
| 49 | } |
| 50 | |
| 51 | /** Remove a node from the scene. */ |
| 52 | export function removeNode(parent: JSX.Element, node: JSX.Element): void { |
nothing calls this directly
no outgoing calls
no test coverage detected