(type)
| 16131 | return svg; |
| 16132 | } |
| 16133 | createElement(type) { |
| 16134 | if (typeof type !== "string") { |
| 16135 | throw new Error("Invalid SVG element type"); |
| 16136 | } |
| 16137 | return this._createSVG(type); |
| 16138 | } |
| 16139 | _createSVG(type) { |
| 16140 | unreachable("Abstract method `_createSVG` called."); |
| 16141 | } |