UNPKG

ngx-testing-tools

Version:
4 lines (3 loc) 187 B
import { Type } from '@angular/core'; import { GuardClass, GuardFn } from './guard-can.model'; export type ValidGuard<T> = T extends GuardClass ? Type<T> : T extends GuardFn ? T : never;