(newChild: BaseRRNode, refChild: BaseRRNode | null)
| 88 | } |
| 89 | |
| 90 | insertBefore(newChild: BaseRRNode, refChild: BaseRRNode | null) { |
| 91 | return super.insertBefore(newChild, refChild); |
| 92 | } |
| 93 | |
| 94 | querySelectorAll(selectors: string): BaseRRNode[] { |
| 95 | return this.nwsapi.select(selectors) as unknown as BaseRRNode[]; |
nothing calls this directly
no test coverage detected