deps.js
1.93 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
* @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
*/
export var ViewClassDependency = (function () {
/**
* @param {?} comp
* @param {?} name
* @param {?} placeholder
*/
function ViewClassDependency(comp, name, placeholder) {
this.comp = comp;
this.name = name;
this.placeholder = placeholder;
}
return ViewClassDependency;
}());
function ViewClassDependency_tsickle_Closure_declarations() {
/** @type {?} */
ViewClassDependency.prototype.comp;
/** @type {?} */
ViewClassDependency.prototype.name;
/** @type {?} */
ViewClassDependency.prototype.placeholder;
}
export var ComponentFactoryDependency = (function () {
/**
* @param {?} comp
* @param {?} placeholder
*/
function ComponentFactoryDependency(comp, placeholder) {
this.comp = comp;
this.placeholder = placeholder;
}
return ComponentFactoryDependency;
}());
function ComponentFactoryDependency_tsickle_Closure_declarations() {
/** @type {?} */
ComponentFactoryDependency.prototype.comp;
/** @type {?} */
ComponentFactoryDependency.prototype.placeholder;
}
export var DirectiveWrapperDependency = (function () {
/**
* @param {?} dir
* @param {?} name
* @param {?} placeholder
*/
function DirectiveWrapperDependency(dir, name, placeholder) {
this.dir = dir;
this.name = name;
this.placeholder = placeholder;
}
return DirectiveWrapperDependency;
}());
function DirectiveWrapperDependency_tsickle_Closure_declarations() {
/** @type {?} */
DirectiveWrapperDependency.prototype.dir;
/** @type {?} */
DirectiveWrapperDependency.prototype.name;
/** @type {?} */
DirectiveWrapperDependency.prototype.placeholder;
}
//# sourceMappingURL=deps.js.map