source: trip-planner-front/node_modules/@angular/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1.d.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/// <amd-module name="@angular/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1" />
2/**
3 * @license
4 * Copyright Google LLC All Rights Reserved.
5 *
6 * Use of this source code is governed by an MIT-style license that can be
7 * found in the LICENSE file at https://angular.io/license
8 */
9import { ConstantPool, R3ClassMetadata, R3DeclareClassMetadata, R3PartialDeclaration } from '@angular/compiler';
10import * as o from '@angular/compiler/src/output/output_ast';
11import { AstObject } from '../../ast/ast_value';
12import { PartialLinker } from './partial_linker';
13/**
14 * A `PartialLinker` that is designed to process `ɵɵngDeclareClassMetadata()` call expressions.
15 */
16export declare class PartialClassMetadataLinkerVersion1<TExpression> implements PartialLinker<TExpression> {
17 linkPartialDeclaration(constantPool: ConstantPool, metaObj: AstObject<R3PartialDeclaration, TExpression>): o.Expression;
18}
19/**
20 * Derives the `R3ClassMetadata` structure from the AST object.
21 */
22export declare function toR3ClassMetadata<TExpression>(metaObj: AstObject<R3DeclareClassMetadata, TExpression>): R3ClassMetadata;
Note: See TracBrowser for help on using the repository browser.