UNPKG

337 BTypeScriptView Raw
1export interface SecurityGuardModel {
2 /**
3 * The authorization string for this guard.
4 */
5 authorization?: string;
6 /**
7 * Defualts to true.
8 */
9 canActive?: boolean;
10 /**
11 * Defualts to false.
12 */
13 canLoad?: boolean;
14 /**
15 * Defualts to false.
16 */
17 canActivateChild?: boolean;
18}