(instance: any)
| 83 | export const onRunEffectsKey: keyof OnRunEffects = 'ngrxOnRunEffects'; |
| 84 | |
| 85 | export function isOnRunEffects(instance: any): instance is OnRunEffects { |
| 86 | return isFunction(instance, onRunEffectsKey); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * @description |
no test coverage detected