(callback: Function)
| 20 | } |
| 21 | |
| 22 | public $onMounted(callback: Function) { |
| 23 | this._addCallback("onMounted", callback); |
| 24 | } |
| 25 | |
| 26 | public $onUnmounted(callback: Function) { |
| 27 | this._addCallback("onUnmounted", callback); |
nothing calls this directly
no test coverage detected