feat(ivy): support providers and viewProviders (#25803)
PR Close #25803
This commit is contained in:

committed by
Matias Niemelä

parent
9dc52d9d04
commit
b0476f308b
@ -103,6 +103,11 @@ export interface R3DirectiveMetadata {
|
||||
* if any.
|
||||
*/
|
||||
exportAs: string|null;
|
||||
|
||||
/**
|
||||
* The list of providers defined in the directive.
|
||||
*/
|
||||
providers: o.Expression|null;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -180,6 +185,11 @@ export interface R3ComponentMetadata extends R3DirectiveMetadata {
|
||||
* A collection of animation triggers that will be used in the component template.
|
||||
*/
|
||||
animations: o.Expression|null;
|
||||
|
||||
/**
|
||||
* The list of view providers defined in the component.
|
||||
*/
|
||||
viewProviders: o.Expression|null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user