source: trip-planner-front/node_modules/@angular/compiler-cli/src/transformers/program.d.ts@ 59329aa

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

initial commit

  • Property mode set to 100644
File size: 1.5 KB
Line 
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/program" />
9import * as path from 'path';
10import * as ts from 'typescript';
11import { CompilerHost, CompilerOptions, Program } from './api';
12export declare function setTempProgramHandlerForTest(handler: (program: ts.Program) => void): void;
13export declare function resetTempProgramHandlerForTest(): void;
14export declare function createProgram({ rootNames, options, host, oldProgram }: {
15 rootNames: ReadonlyArray<string>;
16 options: CompilerOptions;
17 host: CompilerHost;
18 oldProgram?: Program;
19}): Program;
20/**
21 * Returns a function that can adjust a path from source path to out path,
22 * based on an existing mapping from source to out path.
23 *
24 * TODO(tbosch): talk to the TypeScript team to expose their logic for calculating the `rootDir`
25 * if none was specified.
26 *
27 * Note: This function works on normalized paths from typescript but should always return
28 * POSIX normalized paths for output paths.
29 */
30export declare function createSrcToOutPathMapper(outDir: string | undefined, sampleSrcFileName: string | undefined, sampleOutFileName: string | undefined, host?: {
31 dirname: typeof path.dirname;
32 resolve: typeof path.resolve;
33 relative: typeof path.relative;
34}): (srcFileName: string) => string;
Note: See TracBrowser for help on using the repository browser.