UNPKG

ngx-testing-tools

Version:
8 lines (7 loc) 278 B
import { InjectionToken, Type } from '@angular/core'; import { GuardClass, GuardFn } from '../models/guard-can.model'; export interface GuardInfo { rootGuard: Type<GuardClass> | GuardFn; isRootCtor: boolean; } export declare const GUARD_INFO: InjectionToken<GuardInfo>;