UNPKG

eas-cli

Version:
18 lines (17 loc) 597 B
/** * @returns the project root directory. * * @deprecated Should not be used outside of context functions. */ export declare function findProjectRootAsync({ cwd, defaultToProcessCwd, }?: { cwd?: string; defaultToProcessCwd?: boolean; }): Promise<string>; /** * Determine the project root directory and ensure some constraints about the project setup * like CLI version and dependencies. * @returns the project root directory * * @deprecated Should not be used outside of context functions. */ export declare function findProjectDirAndVerifyProjectSetupAsync(): Promise<string>;