File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -477,6 +477,17 @@ export class Identifiers {
477
477
moduleName : CORE ,
478
478
} ;
479
479
480
+ // Decorators
481
+ static inputDecorator : o . ExternalReference = { name : 'Input' , moduleName : CORE } ;
482
+ static outputDecorator : o . ExternalReference = { name : 'Output' , moduleName : CORE } ;
483
+ static viewChildDecorator : o . ExternalReference = { name : 'ViewChild' , moduleName : CORE } ;
484
+ static viewChildrenDecorator : o . ExternalReference = { name : 'ViewChildren' , moduleName : CORE } ;
485
+ static contentChildDecorator : o . ExternalReference = { name : 'ContentChild' , moduleName : CORE } ;
486
+ static contentChildrenDecorator : o . ExternalReference = {
487
+ name : 'ContentChildren' ,
488
+ moduleName : CORE ,
489
+ } ;
490
+
480
491
// type-checking
481
492
static InputSignalBrandWriteType = { name : 'ɵINPUT_SIGNAL_BRAND_WRITE_TYPE' , moduleName : CORE } ;
482
493
static UnwrapDirectiveSignalInputs = { name : 'ɵUnwrapDirectiveSignalInputs' , moduleName : CORE } ;
Original file line number Diff line number Diff line change @@ -29,6 +29,12 @@ const INTERFACE_EXCEPTIONS = new Set<string>([
29
29
const AOT_ONLY = new Set < string > ( [
30
30
'ɵsetClassMetadata' ,
31
31
'ɵsetClassMetadataAsync' ,
32
+ 'Input' ,
33
+ 'Output' ,
34
+ 'ViewChild' ,
35
+ 'ViewChildren' ,
36
+ 'ContentChild' ,
37
+ 'ContentChildren' ,
32
38
33
39
// used in type-checking.
34
40
'ɵINPUT_SIGNAL_BRAND_WRITE_TYPE' ,
You can’t perform that action at this time.
0 commit comments