refactor: rename ComponentRenderTypeV2 to RendererTypeV2

This commit is contained in:
Tobias Bosch
2017-02-17 09:01:37 -08:00
committed by Igor Minar
parent b9f17a9cb2
commit 778ded9fcf
20 changed files with 87 additions and 94 deletions
+2 -2
View File
@@ -111,7 +111,7 @@ export abstract class RootRenderer {
/**
* @experimental
*/
export interface ComponentRenderTypeV2 {
export interface RendererTypeV2 {
id: string;
encapsulation: ViewEncapsulation;
styles: (string|any[])[];
@@ -122,7 +122,7 @@ export interface ComponentRenderTypeV2 {
* @experimental
*/
export abstract class RendererFactoryV2 {
abstract createRenderer(hostElement: any, type: ComponentRenderTypeV2): RendererV2;
abstract createRenderer(hostElement: any, type: RendererTypeV2): RendererV2;
}
/**