UNPKG

angel-manager

Version:

<p align="center"> <img src="angel-manager.webp" alt="Angel Manager" width="300"> </p>

9 lines (8 loc) 358 B
/** * Function to find the root directory of the project. * @param {string} startDir - The starting directory from which to begin the search. * @returns {string} - The absolute path to the project root. * @throws {Error} - If the project root is not found. */ declare const findProjectRoot: (startDir: string) => string; export default findProjectRoot;