UNPKG

@nx-dotnet/utils

Version:

This library was generated with [Nx](https://nx.dev).

11 lines (10 loc) 529 B
import { Tree } from '@nx/devkit'; export declare function projPattern(path: string): string; /** * Wraps the fast-glob package. * @returns array of file paths */ export declare function glob(path: string, cwd?: string, tree?: Tree): string[] | Promise<string[]>; export declare function globSync(path: string, cwd?: string, tree?: Tree): string[]; export declare function findProjectFileInPath(path: string, tree?: Tree): Promise<string>; export declare function findProjectFileInPathSync(path: string, tree?: Tree): string;