(tagName: string)
| 17 | } |
| 18 | |
| 19 | public createElement(tagName: string) { |
| 20 | return new Element(tagName); |
| 21 | } |
| 22 | |
| 23 | public createElementNS(namespace: string, tagName: string) { |
| 24 | return new Element(`${namespace}:${tagName}`); |
no outgoing calls
no test coverage detected