* Set innerHTML of the element
(content: string)
| 422 | * Set innerHTML of the element |
| 423 | */ |
| 424 | setHtml(content: string): this { |
| 425 | this.native.innerHTML = content; |
| 426 | return this; |
| 427 | } |
| 428 | |
| 429 | /** |
| 430 | * Set textContent of the element |
no outgoing calls
no test coverage detected