source: trip-planner-front/node_modules/@angular/core/schematics/migrations/relative-link-resolution/collector.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: 853 bytes
Line 
1/// <amd-module name="@angular/core/schematics/migrations/relative-link-resolution/collector" />
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 * as ts from 'typescript';
10/**
11 * Visitor that walks through specified TypeScript nodes and collects all
12 * found ExtraOptions#RelativeLinkResolution assignments.
13 */
14export declare class RelativeLinkResolutionCollector {
15 private readonly typeChecker;
16 readonly forRootCalls: ts.CallExpression[];
17 readonly extraOptionsLiterals: ts.ObjectLiteralExpression[];
18 constructor(typeChecker: ts.TypeChecker);
19 visitNode(node: ts.Node): void;
20 private getLiteralNeedingMigrationFromIdentifier;
21 private getLiteralNeedingMigration;
22}
Note: See TracBrowser for help on using the repository browser.