UNPKG

333 BTypeScriptView Raw
1import { Path } from '@angular-devkit/core';
2import { Tree } from '@angular-devkit/schematics';
3export interface FindOptions {
4 name?: string;
5 path: Path;
6 kind?: string;
7}
8export declare class ModuleFinder {
9 private tree;
10 constructor(tree: Tree);
11 find(options: FindOptions): Path | null;
12 private findIn;
13}