@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
19 lines • 558 B
TypeScript
import type { InputOptions } from "../interfaces/InputOptions";
/**
* Check if this project is a monorepo
* @param {InputOptions} options
* @returns {{error:string, appPath:string, appDirectory:string, isMonorepo:boolean}}
*/
declare function checkMonorepo(options?: InputOptions): {
error: string;
appPath?: undefined;
appDirectory?: undefined;
isMonorepo?: undefined;
} | {
appPath: string;
appDirectory: string;
isMonorepo: boolean;
error?: undefined;
};
export { checkMonorepo };
//# sourceMappingURL=monorepo.d.ts.map