* Remove the element from the DOM
()
| 438 | * Remove the element from the DOM |
| 439 | */ |
| 440 | remove(): void { |
| 441 | if (this.native.parentNode) { |
| 442 | this.native.parentNode.removeChild(this.native); |
| 443 | } |
| 444 | } |
| 445 | |
| 446 | /** |
| 447 | * Set multiple style properties on the element. |
no outgoing calls
no test coverage detected