* The method to be invoked during `stop`
(...injectedArgs: unknown[])
| 31 | * The method to be invoked during `stop` |
| 32 | */ |
| 33 | stop?(...injectedArgs: unknown[]): ValueOrPromise<void>; |
| 34 | } |
| 35 | |
| 36 | const lifeCycleMethods: (keyof LifeCycleObserver)[] = ['init', 'start', 'stop']; |
no outgoing calls