( ctor: Constructor<unknown>, )
| 49 | * @param ctor - A class |
| 50 | */ |
| 51 | export function isLifeCycleObserverClass( |
| 52 | ctor: Constructor<unknown>, |
| 53 | ): ctor is Constructor<LifeCycleObserver> { |
| 54 | return ctor.prototype && isLifeCycleObserver(ctor.prototype); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * A `BindingTemplate` function to configure the binding as life cycle observer |
no test coverage detected