feat(animations): allow animation integration support into host params
Closes #9044 Closes #9933
This commit is contained in:
7
tools/public_api_guard/core/index.d.ts
vendored
7
tools/public_api_guard/core/index.d.ts
vendored
@ -1200,12 +1200,17 @@ export declare class ReflectiveKey {
|
||||
|
||||
/** @experimental */
|
||||
export declare class RenderComponentType {
|
||||
animations: {
|
||||
[key: string]: Function;
|
||||
};
|
||||
encapsulation: ViewEncapsulation;
|
||||
id: string;
|
||||
slotCount: number;
|
||||
styles: Array<string | any[]>;
|
||||
templateUrl: string;
|
||||
constructor(id: string, templateUrl: string, slotCount: number, encapsulation: ViewEncapsulation, styles: Array<string | any[]>);
|
||||
constructor(id: string, templateUrl: string, slotCount: number, encapsulation: ViewEncapsulation, styles: Array<string | any[]>, animations: {
|
||||
[key: string]: Function;
|
||||
});
|
||||
}
|
||||
|
||||
/** @experimental */
|
||||
|
Reference in New Issue
Block a user