feat(compiler): make interpolation symbols configurable (@Component
config) (#9367)
closes #9158
This commit is contained in:
@ -42,7 +42,8 @@ export interface ComponentDecorator extends TypeDecorator {
|
||||
renderer?: string,
|
||||
styles?: string[],
|
||||
styleUrls?: string[],
|
||||
animations?: AnimationEntryMetadata[]
|
||||
animations?: AnimationEntryMetadata[],
|
||||
interpolation?: [string, string]
|
||||
}): ViewDecorator;
|
||||
}
|
||||
|
||||
@ -63,7 +64,8 @@ export interface ViewDecorator extends TypeDecorator {
|
||||
renderer?: string,
|
||||
styles?: string[],
|
||||
styleUrls?: string[],
|
||||
animations?: AnimationEntryMetadata[]
|
||||
animations?: AnimationEntryMetadata[],
|
||||
interpolation?: [string, string]
|
||||
}): ViewDecorator;
|
||||
}
|
||||
|
||||
@ -175,7 +177,8 @@ export interface ComponentMetadataFactory {
|
||||
animations?: AnimationEntryMetadata[],
|
||||
directives?: Array<Type|any[]>,
|
||||
pipes?: Array<Type|any[]>,
|
||||
encapsulation?: ViewEncapsulation
|
||||
encapsulation?: ViewEncapsulation,
|
||||
interpolation?: [string, string]
|
||||
}): ComponentDecorator;
|
||||
new (obj: {
|
||||
selector?: string,
|
||||
@ -197,7 +200,8 @@ export interface ComponentMetadataFactory {
|
||||
animations?: AnimationEntryMetadata[],
|
||||
directives?: Array<Type|any[]>,
|
||||
pipes?: Array<Type|any[]>,
|
||||
encapsulation?: ViewEncapsulation
|
||||
encapsulation?: ViewEncapsulation,
|
||||
interpolation?: [string, string]
|
||||
}): ComponentMetadata;
|
||||
}
|
||||
|
||||
@ -252,7 +256,8 @@ export interface ViewMetadataFactory {
|
||||
encapsulation?: ViewEncapsulation,
|
||||
styles?: string[],
|
||||
styleUrls?: string[],
|
||||
animations?: AnimationEntryMetadata[]
|
||||
animations?: AnimationEntryMetadata[],
|
||||
interpolation?: [string, string]
|
||||
}): ViewDecorator;
|
||||
new (obj: {
|
||||
templateUrl?: string,
|
||||
@ -262,7 +267,8 @@ export interface ViewMetadataFactory {
|
||||
encapsulation?: ViewEncapsulation,
|
||||
styles?: string[],
|
||||
styleUrls?: string[],
|
||||
animations?: AnimationEntryMetadata[]
|
||||
animations?: AnimationEntryMetadata[],
|
||||
interpolation?: [string, string]
|
||||
}): ViewMetadata;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user