Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1002 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /**
|
---|
| 2 | * @license
|
---|
| 3 | * Copyright Google LLC All Rights Reserved.
|
---|
| 4 | *
|
---|
| 5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
| 6 | * found in the LICENSE file at https://angular.io/license
|
---|
| 7 | */
|
---|
| 8 | import { Component } from './core';
|
---|
| 9 | import * as o from './output/output_ast';
|
---|
| 10 | /**
|
---|
| 11 | * Provides access to reflection data about symbols that the compiler needs.
|
---|
| 12 | */
|
---|
| 13 | export declare abstract class CompileReflector {
|
---|
| 14 | abstract parameters(typeOrFunc: any): any[][];
|
---|
| 15 | abstract annotations(typeOrFunc: any): any[];
|
---|
| 16 | abstract shallowAnnotations(typeOrFunc: any): any[];
|
---|
| 17 | abstract tryAnnotations(typeOrFunc: any): any[];
|
---|
| 18 | abstract propMetadata(typeOrFunc: any): {
|
---|
| 19 | [key: string]: any[];
|
---|
| 20 | };
|
---|
| 21 | abstract hasLifecycleHook(type: any, lcProperty: string): boolean;
|
---|
| 22 | abstract guards(typeOrFunc: any): {
|
---|
| 23 | [key: string]: any;
|
---|
| 24 | };
|
---|
| 25 | abstract componentModuleUrl(type: any, cmpMetadata: Component): string;
|
---|
| 26 | abstract resolveExternalReference(ref: o.ExternalReference): any;
|
---|
| 27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.