refactor(compiler): remove view factories, use view classes directly
This commit is contained in:

committed by
Vikram Subramanian

parent
7c5cc9bc41
commit
0e3d655220
2
tools/public_api_guard/core/index.d.ts
vendored
2
tools/public_api_guard/core/index.d.ts
vendored
@ -247,7 +247,7 @@ export interface ComponentDecorator {
|
||||
export declare class ComponentFactory<C> {
|
||||
componentType: Type<any>;
|
||||
selector: string;
|
||||
constructor(selector: string, _viewFactory: Function, _componentType: Type<any>);
|
||||
constructor(selector: string, _viewClass: Type<AppView<any>>, _componentType: Type<any>);
|
||||
create(injector: Injector, projectableNodes?: any[][], rootSelectorOrNode?: string | any): ComponentRef<C>;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user