source: trip-planner-front/node_modules/@schematics/angular/utility/find-module.d.ts@ 8d391a1

Last change on this file since 8d391a1 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/**
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 */
8import { Path } from '@angular-devkit/core';
9import { Tree } from '@angular-devkit/schematics';
10export interface ModuleOptions {
11 module?: string;
12 name: string;
13 flat?: boolean;
14 path?: string;
15 skipImport?: boolean;
16 moduleExt?: string;
17 routingModuleExt?: string;
18}
19export declare const MODULE_EXT = ".module.ts";
20export declare const ROUTING_MODULE_EXT = "-routing.module.ts";
21/**
22 * Find the module referred by a set of options passed to the schematics.
23 */
24export declare function findModuleFromOptions(host: Tree, options: ModuleOptions): Path | undefined;
25/**
26 * Function to find the "closest" module to a generated file's path.
27 */
28export declare function findModule(host: Tree, generateDir: string, moduleExt?: string, routingModuleExt?: string): Path;
29/**
30 * Build a relative path from one file path to another file path.
31 */
32export declare function buildRelativePath(from: string, to: string): string;
Note: See TracBrowser for help on using the repository browser.