UNPKG

662 BTypeScriptView Raw
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/// <amd-module name="@angular/compiler-cli/src/transformers/r3_metadata_transform" />
9import { PartialModule } from '@angular/compiler';
10import ts from 'typescript';
11import { MetadataTransformer, ValueTransform } from './metadata_cache';
12export declare class PartialModuleMetadataTransformer implements MetadataTransformer {
13 private moduleMap;
14 constructor(modules: PartialModule[]);
15 start(sourceFile: ts.SourceFile): ValueTransform | undefined;
16}