forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathr3_identifiers.ts
More file actions
588 lines (506 loc) · 22.9 KB
/
r3_identifiers.ts
File metadata and controls
588 lines (506 loc) · 22.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import * as o from '../output/output_ast';
const CORE = '@angular/core';
export class Identifiers {
/* Methods */
static NEW_METHOD = 'factory';
static TRANSFORM_METHOD = 'transform';
static PATCH_DEPS = 'patchedDeps';
static core: o.ExternalReference = {name: null, moduleName: CORE};
/* Instructions */
static namespaceHTML: o.ExternalReference = {name: 'ɵɵnamespaceHTML', moduleName: CORE};
static namespaceMathML: o.ExternalReference = {name: 'ɵɵnamespaceMathML', moduleName: CORE};
static namespaceSVG: o.ExternalReference = {name: 'ɵɵnamespaceSVG', moduleName: CORE};
static element: o.ExternalReference = {name: 'ɵɵelement', moduleName: CORE};
static elementStart: o.ExternalReference = {name: 'ɵɵelementStart', moduleName: CORE};
static elementEnd: o.ExternalReference = {name: 'ɵɵelementEnd', moduleName: CORE};
static advance: o.ExternalReference = {name: 'ɵɵadvance', moduleName: CORE};
static syntheticHostProperty: o.ExternalReference = {
name: 'ɵɵsyntheticHostProperty',
moduleName: CORE,
};
static syntheticHostListener: o.ExternalReference = {
name: 'ɵɵsyntheticHostListener',
moduleName: CORE,
};
static attribute: o.ExternalReference = {name: 'ɵɵattribute', moduleName: CORE};
static attributeInterpolate1: o.ExternalReference = {
name: 'ɵɵattributeInterpolate1',
moduleName: CORE,
};
static attributeInterpolate2: o.ExternalReference = {
name: 'ɵɵattributeInterpolate2',
moduleName: CORE,
};
static attributeInterpolate3: o.ExternalReference = {
name: 'ɵɵattributeInterpolate3',
moduleName: CORE,
};
static attributeInterpolate4: o.ExternalReference = {
name: 'ɵɵattributeInterpolate4',
moduleName: CORE,
};
static attributeInterpolate5: o.ExternalReference = {
name: 'ɵɵattributeInterpolate5',
moduleName: CORE,
};
static attributeInterpolate6: o.ExternalReference = {
name: 'ɵɵattributeInterpolate6',
moduleName: CORE,
};
static attributeInterpolate7: o.ExternalReference = {
name: 'ɵɵattributeInterpolate7',
moduleName: CORE,
};
static attributeInterpolate8: o.ExternalReference = {
name: 'ɵɵattributeInterpolate8',
moduleName: CORE,
};
static attributeInterpolateV: o.ExternalReference = {
name: 'ɵɵattributeInterpolateV',
moduleName: CORE,
};
static classProp: o.ExternalReference = {name: 'ɵɵclassProp', moduleName: CORE};
static elementContainerStart: o.ExternalReference = {
name: 'ɵɵelementContainerStart',
moduleName: CORE,
};
static elementContainerEnd: o.ExternalReference = {
name: 'ɵɵelementContainerEnd',
moduleName: CORE,
};
static elementContainer: o.ExternalReference = {name: 'ɵɵelementContainer', moduleName: CORE};
static styleMap: o.ExternalReference = {name: 'ɵɵstyleMap', moduleName: CORE};
static styleMapInterpolate1: o.ExternalReference = {
name: 'ɵɵstyleMapInterpolate1',
moduleName: CORE,
};
static styleMapInterpolate2: o.ExternalReference = {
name: 'ɵɵstyleMapInterpolate2',
moduleName: CORE,
};
static styleMapInterpolate3: o.ExternalReference = {
name: 'ɵɵstyleMapInterpolate3',
moduleName: CORE,
};
static styleMapInterpolate4: o.ExternalReference = {
name: 'ɵɵstyleMapInterpolate4',
moduleName: CORE,
};
static styleMapInterpolate5: o.ExternalReference = {
name: 'ɵɵstyleMapInterpolate5',
moduleName: CORE,
};
static styleMapInterpolate6: o.ExternalReference = {
name: 'ɵɵstyleMapInterpolate6',
moduleName: CORE,
};
static styleMapInterpolate7: o.ExternalReference = {
name: 'ɵɵstyleMapInterpolate7',
moduleName: CORE,
};
static styleMapInterpolate8: o.ExternalReference = {
name: 'ɵɵstyleMapInterpolate8',
moduleName: CORE,
};
static styleMapInterpolateV: o.ExternalReference = {
name: 'ɵɵstyleMapInterpolateV',
moduleName: CORE,
};
static classMap: o.ExternalReference = {name: 'ɵɵclassMap', moduleName: CORE};
static classMapInterpolate1: o.ExternalReference = {
name: 'ɵɵclassMapInterpolate1',
moduleName: CORE,
};
static classMapInterpolate2: o.ExternalReference = {
name: 'ɵɵclassMapInterpolate2',
moduleName: CORE,
};
static classMapInterpolate3: o.ExternalReference = {
name: 'ɵɵclassMapInterpolate3',
moduleName: CORE,
};
static classMapInterpolate4: o.ExternalReference = {
name: 'ɵɵclassMapInterpolate4',
moduleName: CORE,
};
static classMapInterpolate5: o.ExternalReference = {
name: 'ɵɵclassMapInterpolate5',
moduleName: CORE,
};
static classMapInterpolate6: o.ExternalReference = {
name: 'ɵɵclassMapInterpolate6',
moduleName: CORE,
};
static classMapInterpolate7: o.ExternalReference = {
name: 'ɵɵclassMapInterpolate7',
moduleName: CORE,
};
static classMapInterpolate8: o.ExternalReference = {
name: 'ɵɵclassMapInterpolate8',
moduleName: CORE,
};
static classMapInterpolateV: o.ExternalReference = {
name: 'ɵɵclassMapInterpolateV',
moduleName: CORE,
};
static styleProp: o.ExternalReference = {name: 'ɵɵstyleProp', moduleName: CORE};
static stylePropInterpolate1: o.ExternalReference = {
name: 'ɵɵstylePropInterpolate1',
moduleName: CORE,
};
static stylePropInterpolate2: o.ExternalReference = {
name: 'ɵɵstylePropInterpolate2',
moduleName: CORE,
};
static stylePropInterpolate3: o.ExternalReference = {
name: 'ɵɵstylePropInterpolate3',
moduleName: CORE,
};
static stylePropInterpolate4: o.ExternalReference = {
name: 'ɵɵstylePropInterpolate4',
moduleName: CORE,
};
static stylePropInterpolate5: o.ExternalReference = {
name: 'ɵɵstylePropInterpolate5',
moduleName: CORE,
};
static stylePropInterpolate6: o.ExternalReference = {
name: 'ɵɵstylePropInterpolate6',
moduleName: CORE,
};
static stylePropInterpolate7: o.ExternalReference = {
name: 'ɵɵstylePropInterpolate7',
moduleName: CORE,
};
static stylePropInterpolate8: o.ExternalReference = {
name: 'ɵɵstylePropInterpolate8',
moduleName: CORE,
};
static stylePropInterpolateV: o.ExternalReference = {
name: 'ɵɵstylePropInterpolateV',
moduleName: CORE,
};
static nextContext: o.ExternalReference = {name: 'ɵɵnextContext', moduleName: CORE};
static resetView: o.ExternalReference = {name: 'ɵɵresetView', moduleName: CORE};
static templateCreate: o.ExternalReference = {name: 'ɵɵtemplate', moduleName: CORE};
static defer: o.ExternalReference = {name: 'ɵɵdefer', moduleName: CORE};
static deferWhen: o.ExternalReference = {name: 'ɵɵdeferWhen', moduleName: CORE};
static deferOnIdle: o.ExternalReference = {name: 'ɵɵdeferOnIdle', moduleName: CORE};
static deferOnImmediate: o.ExternalReference = {name: 'ɵɵdeferOnImmediate', moduleName: CORE};
static deferOnTimer: o.ExternalReference = {name: 'ɵɵdeferOnTimer', moduleName: CORE};
static deferOnHover: o.ExternalReference = {name: 'ɵɵdeferOnHover', moduleName: CORE};
static deferOnInteraction: o.ExternalReference = {name: 'ɵɵdeferOnInteraction', moduleName: CORE};
static deferOnViewport: o.ExternalReference = {name: 'ɵɵdeferOnViewport', moduleName: CORE};
static deferPrefetchWhen: o.ExternalReference = {name: 'ɵɵdeferPrefetchWhen', moduleName: CORE};
static deferPrefetchOnIdle: o.ExternalReference = {
name: 'ɵɵdeferPrefetchOnIdle',
moduleName: CORE,
};
static deferPrefetchOnImmediate: o.ExternalReference = {
name: 'ɵɵdeferPrefetchOnImmediate',
moduleName: CORE,
};
static deferPrefetchOnTimer: o.ExternalReference = {
name: 'ɵɵdeferPrefetchOnTimer',
moduleName: CORE,
};
static deferPrefetchOnHover: o.ExternalReference = {
name: 'ɵɵdeferPrefetchOnHover',
moduleName: CORE,
};
static deferPrefetchOnInteraction: o.ExternalReference = {
name: 'ɵɵdeferPrefetchOnInteraction',
moduleName: CORE,
};
static deferPrefetchOnViewport: o.ExternalReference = {
name: 'ɵɵdeferPrefetchOnViewport',
moduleName: CORE,
};
static deferHydrateWhen: o.ExternalReference = {name: 'ɵɵdeferHydrateWhen', moduleName: CORE};
static deferHydrateNever: o.ExternalReference = {name: 'ɵɵdeferHydrateNever', moduleName: CORE};
static deferHydrateOnIdle: o.ExternalReference = {
name: 'ɵɵdeferHydrateOnIdle',
moduleName: CORE,
};
static deferHydrateOnImmediate: o.ExternalReference = {
name: 'ɵɵdeferHydrateOnImmediate',
moduleName: CORE,
};
static deferHydrateOnTimer: o.ExternalReference = {
name: 'ɵɵdeferHydrateOnTimer',
moduleName: CORE,
};
static deferHydrateOnHover: o.ExternalReference = {
name: 'ɵɵdeferHydrateOnHover',
moduleName: CORE,
};
static deferHydrateOnInteraction: o.ExternalReference = {
name: 'ɵɵdeferHydrateOnInteraction',
moduleName: CORE,
};
static deferHydrateOnViewport: o.ExternalReference = {
name: 'ɵɵdeferHydrateOnViewport',
moduleName: CORE,
};
static deferEnableTimerScheduling: o.ExternalReference = {
name: 'ɵɵdeferEnableTimerScheduling',
moduleName: CORE,
};
static conditional: o.ExternalReference = {name: 'ɵɵconditional', moduleName: CORE};
static repeater: o.ExternalReference = {name: 'ɵɵrepeater', moduleName: CORE};
static repeaterCreate: o.ExternalReference = {name: 'ɵɵrepeaterCreate', moduleName: CORE};
static repeaterTrackByIndex: o.ExternalReference = {
name: 'ɵɵrepeaterTrackByIndex',
moduleName: CORE,
};
static repeaterTrackByIdentity: o.ExternalReference = {
name: 'ɵɵrepeaterTrackByIdentity',
moduleName: CORE,
};
static componentInstance: o.ExternalReference = {name: 'ɵɵcomponentInstance', moduleName: CORE};
static text: o.ExternalReference = {name: 'ɵɵtext', moduleName: CORE};
static enableBindings: o.ExternalReference = {name: 'ɵɵenableBindings', moduleName: CORE};
static disableBindings: o.ExternalReference = {name: 'ɵɵdisableBindings', moduleName: CORE};
static getCurrentView: o.ExternalReference = {name: 'ɵɵgetCurrentView', moduleName: CORE};
static textInterpolate: o.ExternalReference = {name: 'ɵɵtextInterpolate', moduleName: CORE};
static textInterpolate1: o.ExternalReference = {name: 'ɵɵtextInterpolate1', moduleName: CORE};
static textInterpolate2: o.ExternalReference = {name: 'ɵɵtextInterpolate2', moduleName: CORE};
static textInterpolate3: o.ExternalReference = {name: 'ɵɵtextInterpolate3', moduleName: CORE};
static textInterpolate4: o.ExternalReference = {name: 'ɵɵtextInterpolate4', moduleName: CORE};
static textInterpolate5: o.ExternalReference = {name: 'ɵɵtextInterpolate5', moduleName: CORE};
static textInterpolate6: o.ExternalReference = {name: 'ɵɵtextInterpolate6', moduleName: CORE};
static textInterpolate7: o.ExternalReference = {name: 'ɵɵtextInterpolate7', moduleName: CORE};
static textInterpolate8: o.ExternalReference = {name: 'ɵɵtextInterpolate8', moduleName: CORE};
static textInterpolateV: o.ExternalReference = {name: 'ɵɵtextInterpolateV', moduleName: CORE};
static restoreView: o.ExternalReference = {name: 'ɵɵrestoreView', moduleName: CORE};
static pureFunction0: o.ExternalReference = {name: 'ɵɵpureFunction0', moduleName: CORE};
static pureFunction1: o.ExternalReference = {name: 'ɵɵpureFunction1', moduleName: CORE};
static pureFunction2: o.ExternalReference = {name: 'ɵɵpureFunction2', moduleName: CORE};
static pureFunction3: o.ExternalReference = {name: 'ɵɵpureFunction3', moduleName: CORE};
static pureFunction4: o.ExternalReference = {name: 'ɵɵpureFunction4', moduleName: CORE};
static pureFunction5: o.ExternalReference = {name: 'ɵɵpureFunction5', moduleName: CORE};
static pureFunction6: o.ExternalReference = {name: 'ɵɵpureFunction6', moduleName: CORE};
static pureFunction7: o.ExternalReference = {name: 'ɵɵpureFunction7', moduleName: CORE};
static pureFunction8: o.ExternalReference = {name: 'ɵɵpureFunction8', moduleName: CORE};
static pureFunctionV: o.ExternalReference = {name: 'ɵɵpureFunctionV', moduleName: CORE};
static pipeBind1: o.ExternalReference = {name: 'ɵɵpipeBind1', moduleName: CORE};
static pipeBind2: o.ExternalReference = {name: 'ɵɵpipeBind2', moduleName: CORE};
static pipeBind3: o.ExternalReference = {name: 'ɵɵpipeBind3', moduleName: CORE};
static pipeBind4: o.ExternalReference = {name: 'ɵɵpipeBind4', moduleName: CORE};
static pipeBindV: o.ExternalReference = {name: 'ɵɵpipeBindV', moduleName: CORE};
static hostProperty: o.ExternalReference = {name: 'ɵɵhostProperty', moduleName: CORE};
static property: o.ExternalReference = {name: 'ɵɵproperty', moduleName: CORE};
static propertyInterpolate: o.ExternalReference = {
name: 'ɵɵpropertyInterpolate',
moduleName: CORE,
};
static propertyInterpolate1: o.ExternalReference = {
name: 'ɵɵpropertyInterpolate1',
moduleName: CORE,
};
static propertyInterpolate2: o.ExternalReference = {
name: 'ɵɵpropertyInterpolate2',
moduleName: CORE,
};
static propertyInterpolate3: o.ExternalReference = {
name: 'ɵɵpropertyInterpolate3',
moduleName: CORE,
};
static propertyInterpolate4: o.ExternalReference = {
name: 'ɵɵpropertyInterpolate4',
moduleName: CORE,
};
static propertyInterpolate5: o.ExternalReference = {
name: 'ɵɵpropertyInterpolate5',
moduleName: CORE,
};
static propertyInterpolate6: o.ExternalReference = {
name: 'ɵɵpropertyInterpolate6',
moduleName: CORE,
};
static propertyInterpolate7: o.ExternalReference = {
name: 'ɵɵpropertyInterpolate7',
moduleName: CORE,
};
static propertyInterpolate8: o.ExternalReference = {
name: 'ɵɵpropertyInterpolate8',
moduleName: CORE,
};
static propertyInterpolateV: o.ExternalReference = {
name: 'ɵɵpropertyInterpolateV',
moduleName: CORE,
};
static i18n: o.ExternalReference = {name: 'ɵɵi18n', moduleName: CORE};
static i18nAttributes: o.ExternalReference = {name: 'ɵɵi18nAttributes', moduleName: CORE};
static i18nExp: o.ExternalReference = {name: 'ɵɵi18nExp', moduleName: CORE};
static i18nStart: o.ExternalReference = {name: 'ɵɵi18nStart', moduleName: CORE};
static i18nEnd: o.ExternalReference = {name: 'ɵɵi18nEnd', moduleName: CORE};
static i18nApply: o.ExternalReference = {name: 'ɵɵi18nApply', moduleName: CORE};
static i18nPostprocess: o.ExternalReference = {name: 'ɵɵi18nPostprocess', moduleName: CORE};
static pipe: o.ExternalReference = {name: 'ɵɵpipe', moduleName: CORE};
static projection: o.ExternalReference = {name: 'ɵɵprojection', moduleName: CORE};
static projectionDef: o.ExternalReference = {name: 'ɵɵprojectionDef', moduleName: CORE};
static reference: o.ExternalReference = {name: 'ɵɵreference', moduleName: CORE};
static inject: o.ExternalReference = {name: 'ɵɵinject', moduleName: CORE};
static injectAttribute: o.ExternalReference = {name: 'ɵɵinjectAttribute', moduleName: CORE};
static directiveInject: o.ExternalReference = {name: 'ɵɵdirectiveInject', moduleName: CORE};
static invalidFactory: o.ExternalReference = {name: 'ɵɵinvalidFactory', moduleName: CORE};
static invalidFactoryDep: o.ExternalReference = {name: 'ɵɵinvalidFactoryDep', moduleName: CORE};
static templateRefExtractor: o.ExternalReference = {
name: 'ɵɵtemplateRefExtractor',
moduleName: CORE,
};
static forwardRef: o.ExternalReference = {name: 'forwardRef', moduleName: CORE};
static resolveForwardRef: o.ExternalReference = {name: 'resolveForwardRef', moduleName: CORE};
static ɵɵdefineInjectable: o.ExternalReference = {name: 'ɵɵdefineInjectable', moduleName: CORE};
static declareInjectable: o.ExternalReference = {name: 'ɵɵngDeclareInjectable', moduleName: CORE};
static InjectableDeclaration: o.ExternalReference = {
name: 'ɵɵInjectableDeclaration',
moduleName: CORE,
};
static resolveWindow: o.ExternalReference = {name: 'ɵɵresolveWindow', moduleName: CORE};
static resolveDocument: o.ExternalReference = {name: 'ɵɵresolveDocument', moduleName: CORE};
static resolveBody: o.ExternalReference = {name: 'ɵɵresolveBody', moduleName: CORE};
static getComponentDepsFactory: o.ExternalReference = {
name: 'ɵɵgetComponentDepsFactory',
moduleName: CORE,
};
static defineComponent: o.ExternalReference = {name: 'ɵɵdefineComponent', moduleName: CORE};
static declareComponent: o.ExternalReference = {name: 'ɵɵngDeclareComponent', moduleName: CORE};
static setComponentScope: o.ExternalReference = {name: 'ɵɵsetComponentScope', moduleName: CORE};
static ChangeDetectionStrategy: o.ExternalReference = {
name: 'ChangeDetectionStrategy',
moduleName: CORE,
};
static ViewEncapsulation: o.ExternalReference = {
name: 'ViewEncapsulation',
moduleName: CORE,
};
static ComponentDeclaration: o.ExternalReference = {
name: 'ɵɵComponentDeclaration',
moduleName: CORE,
};
static FactoryDeclaration: o.ExternalReference = {
name: 'ɵɵFactoryDeclaration',
moduleName: CORE,
};
static declareFactory: o.ExternalReference = {name: 'ɵɵngDeclareFactory', moduleName: CORE};
static FactoryTarget: o.ExternalReference = {name: 'ɵɵFactoryTarget', moduleName: CORE};
static defineDirective: o.ExternalReference = {name: 'ɵɵdefineDirective', moduleName: CORE};
static declareDirective: o.ExternalReference = {name: 'ɵɵngDeclareDirective', moduleName: CORE};
static DirectiveDeclaration: o.ExternalReference = {
name: 'ɵɵDirectiveDeclaration',
moduleName: CORE,
};
static InjectorDef: o.ExternalReference = {name: 'ɵɵInjectorDef', moduleName: CORE};
static InjectorDeclaration: o.ExternalReference = {
name: 'ɵɵInjectorDeclaration',
moduleName: CORE,
};
static defineInjector: o.ExternalReference = {name: 'ɵɵdefineInjector', moduleName: CORE};
static declareInjector: o.ExternalReference = {name: 'ɵɵngDeclareInjector', moduleName: CORE};
static NgModuleDeclaration: o.ExternalReference = {
name: 'ɵɵNgModuleDeclaration',
moduleName: CORE,
};
static ModuleWithProviders: o.ExternalReference = {
name: 'ModuleWithProviders',
moduleName: CORE,
};
static defineNgModule: o.ExternalReference = {name: 'ɵɵdefineNgModule', moduleName: CORE};
static declareNgModule: o.ExternalReference = {name: 'ɵɵngDeclareNgModule', moduleName: CORE};
static setNgModuleScope: o.ExternalReference = {name: 'ɵɵsetNgModuleScope', moduleName: CORE};
static registerNgModuleType: o.ExternalReference = {
name: 'ɵɵregisterNgModuleType',
moduleName: CORE,
};
static PipeDeclaration: o.ExternalReference = {name: 'ɵɵPipeDeclaration', moduleName: CORE};
static definePipe: o.ExternalReference = {name: 'ɵɵdefinePipe', moduleName: CORE};
static declarePipe: o.ExternalReference = {name: 'ɵɵngDeclarePipe', moduleName: CORE};
static declareClassMetadata: o.ExternalReference = {
name: 'ɵɵngDeclareClassMetadata',
moduleName: CORE,
};
static declareClassMetadataAsync: o.ExternalReference = {
name: 'ɵɵngDeclareClassMetadataAsync',
moduleName: CORE,
};
static setClassMetadata: o.ExternalReference = {name: 'ɵsetClassMetadata', moduleName: CORE};
static setClassMetadataAsync: o.ExternalReference = {
name: 'ɵsetClassMetadataAsync',
moduleName: CORE,
};
static setClassDebugInfo: o.ExternalReference = {name: 'ɵsetClassDebugInfo', moduleName: CORE};
static queryRefresh: o.ExternalReference = {name: 'ɵɵqueryRefresh', moduleName: CORE};
static viewQuery: o.ExternalReference = {name: 'ɵɵviewQuery', moduleName: CORE};
static loadQuery: o.ExternalReference = {name: 'ɵɵloadQuery', moduleName: CORE};
static contentQuery: o.ExternalReference = {name: 'ɵɵcontentQuery', moduleName: CORE};
// Signal queries
static viewQuerySignal: o.ExternalReference = {name: 'ɵɵviewQuerySignal', moduleName: CORE};
static contentQuerySignal: o.ExternalReference = {name: 'ɵɵcontentQuerySignal', moduleName: CORE};
static queryAdvance: o.ExternalReference = {name: 'ɵɵqueryAdvance', moduleName: CORE};
// Two-way bindings
static twoWayProperty: o.ExternalReference = {name: 'ɵɵtwoWayProperty', moduleName: CORE};
static twoWayBindingSet: o.ExternalReference = {name: 'ɵɵtwoWayBindingSet', moduleName: CORE};
static twoWayListener: o.ExternalReference = {name: 'ɵɵtwoWayListener', moduleName: CORE};
static declareLet: o.ExternalReference = {name: 'ɵɵdeclareLet', moduleName: CORE};
static storeLet: o.ExternalReference = {name: 'ɵɵstoreLet', moduleName: CORE};
static readContextLet: o.ExternalReference = {name: 'ɵɵreadContextLet', moduleName: CORE};
static NgOnChangesFeature: o.ExternalReference = {name: 'ɵɵNgOnChangesFeature', moduleName: CORE};
static InheritDefinitionFeature: o.ExternalReference = {
name: 'ɵɵInheritDefinitionFeature',
moduleName: CORE,
};
static CopyDefinitionFeature: o.ExternalReference = {
name: 'ɵɵCopyDefinitionFeature',
moduleName: CORE,
};
static StandaloneFeature: o.ExternalReference = {name: 'ɵɵStandaloneFeature', moduleName: CORE};
static ProvidersFeature: o.ExternalReference = {name: 'ɵɵProvidersFeature', moduleName: CORE};
static HostDirectivesFeature: o.ExternalReference = {
name: 'ɵɵHostDirectivesFeature',
moduleName: CORE,
};
static InputTransformsFeatureFeature: o.ExternalReference = {
name: 'ɵɵInputTransformsFeature',
moduleName: CORE,
};
static listener: o.ExternalReference = {name: 'ɵɵlistener', moduleName: CORE};
static getInheritedFactory: o.ExternalReference = {
name: 'ɵɵgetInheritedFactory',
moduleName: CORE,
};
// sanitization-related functions
static sanitizeHtml: o.ExternalReference = {name: 'ɵɵsanitizeHtml', moduleName: CORE};
static sanitizeStyle: o.ExternalReference = {name: 'ɵɵsanitizeStyle', moduleName: CORE};
static sanitizeResourceUrl: o.ExternalReference = {
name: 'ɵɵsanitizeResourceUrl',
moduleName: CORE,
};
static sanitizeScript: o.ExternalReference = {name: 'ɵɵsanitizeScript', moduleName: CORE};
static sanitizeUrl: o.ExternalReference = {name: 'ɵɵsanitizeUrl', moduleName: CORE};
static sanitizeUrlOrResourceUrl: o.ExternalReference = {
name: 'ɵɵsanitizeUrlOrResourceUrl',
moduleName: CORE,
};
static trustConstantHtml: o.ExternalReference = {name: 'ɵɵtrustConstantHtml', moduleName: CORE};
static trustConstantResourceUrl: o.ExternalReference = {
name: 'ɵɵtrustConstantResourceUrl',
moduleName: CORE,
};
static validateIframeAttribute: o.ExternalReference = {
name: 'ɵɵvalidateIframeAttribute',
moduleName: CORE,
};
// type-checking
static InputSignalBrandWriteType = {name: 'ɵINPUT_SIGNAL_BRAND_WRITE_TYPE', moduleName: CORE};
static UnwrapDirectiveSignalInputs = {name: 'ɵUnwrapDirectiveSignalInputs', moduleName: CORE};
static unwrapWritableSignal = {name: 'ɵunwrapWritableSignal', moduleName: CORE};
}