ft_transcendence/pong/node_modules/@nestjs/schematics/dist/utils/module.finder.d.ts
2023-05-02 19:15:50 +02:00

14 lines
333 B
TypeScript

import { Path } from '@angular-devkit/core';
import { Tree } from '@angular-devkit/schematics';
export interface FindOptions {
name?: string;
path: Path;
kind?: string;
}
export declare class ModuleFinder {
private tree;
constructor(tree: Tree);
find(options: FindOptions): Path | null;
private findIn;
}