UNPKG

1.14 kBTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google Inc. 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;