| 28 | // These types are unnecessarily loose |
| 29 | // https://dom.spec.whatwg.org/#dom-node-textcontent |
| 30 | interface ChildNode { |
| 31 | textContent: string; |
| 32 | } |
| 33 | interface Text { |
| 34 | textContent: string; |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected