(idOrNodeList: (string | Node)[])
| 283 | } |
| 284 | |
| 285 | batchRemoveNode(idOrNodeList: (string | Node)[]) { |
| 286 | for (const item of idOrNodeList) { |
| 287 | this.removeNode(item) |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | insertNode(parent: Node, thing: Node | NodeSchema, at?: number, copy?: boolean) { |
| 292 | return insertChild(parent, thing, at, copy) |
nothing calls this directly
no test coverage detected