source: trip-planner-front/node_modules/@angular/compiler-cli/linker/src/file_linker/linker_environment.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.3 KB
Line 
1/// <amd-module name="@angular/compiler-cli/linker/src/file_linker/linker_environment" />
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 { ReadonlyFileSystem } from '../../../src/ngtsc/file_system';
10import { Logger } from '../../../src/ngtsc/logging';
11import { SourceFileLoader } from '../../../src/ngtsc/sourcemaps';
12import { AstFactory } from '../../../src/ngtsc/translator';
13import { AstHost } from '../ast/ast_host';
14import { LinkerOptions } from './linker_options';
15import { Translator } from './translator';
16export declare class LinkerEnvironment<TStatement, TExpression> {
17 readonly fileSystem: ReadonlyFileSystem;
18 readonly logger: Logger;
19 readonly host: AstHost<TExpression>;
20 readonly factory: AstFactory<TStatement, TExpression>;
21 readonly options: LinkerOptions;
22 readonly translator: Translator<TStatement, TExpression>;
23 readonly sourceFileLoader: SourceFileLoader | null;
24 private constructor();
25 static create<TStatement, TExpression>(fileSystem: ReadonlyFileSystem, logger: Logger, host: AstHost<TExpression>, factory: AstFactory<TStatement, TExpression>, options: Partial<LinkerOptions>): LinkerEnvironment<TStatement, TExpression>;
26}
Note: See TracBrowser for help on using the repository browser.