(callback: Function)
| 24 | } |
| 25 | |
| 26 | public $onUnmounted(callback: Function) { |
| 27 | this._addCallback("onUnmounted", callback); |
| 28 | } |
| 29 | |
| 30 | public $emit(event: string, ...args: any[]) { |
| 31 | const callbacks = this._callbacks.get(event); |
nothing calls this directly
no test coverage detected