* Always triggered once per node => definition, like a `constructor`. * Ideal to setup anything as a one off operation. * `this.element` will point at the node handled by this instance.
()
| 5 | * `this.element` will point at the node handled by this instance. |
| 6 | */ |
| 7 | init?(): void; |
| 8 | |
| 9 | /** |
| 10 | * Triggered once the node is live. |