constants.d.ts
1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { ViewEncapsulation } from '@angular/core';
import * as o from '../output/output_ast';
import { ViewType } from '../private_import_core';
export declare class ViewTypeEnum {
static fromValue(value: ViewType): o.Expression;
}
export declare class ViewEncapsulationEnum {
static fromValue(value: ViewEncapsulation): o.Expression;
}
export declare class ChangeDetectorStatusEnum {
static fromValue(value: ChangeDetectorStatusEnum): o.Expression;
}
export declare class ViewConstructorVars {
static viewUtils: o.ReadVarExpr;
static parentView: o.ReadVarExpr;
static parentIndex: o.ReadVarExpr;
static parentElement: o.ReadVarExpr;
}
export declare class ViewProperties {
static renderer: o.ReadPropExpr;
static viewUtils: o.ReadPropExpr;
}
export declare class InjectMethodVars {
static token: o.ReadVarExpr;
static requestNodeIndex: o.ReadVarExpr;
static notFoundResult: o.ReadVarExpr;
}
export declare class DetectChangesVars {
static throwOnChange: o.ReadVarExpr;
static changes: o.ReadVarExpr;
static changed: o.ReadVarExpr;
}