@capgo/cli
Version:
A CLI to upload to capgo servers
21 lines (20 loc) • 599 B
TypeScript
interface DoctorInfoOptions {
packageJson?: string;
}
export declare function getInfoInternal(options: DoctorInfoOptions, silent?: boolean): Promise<{
appName: string;
appId: any;
appVersion: any;
webDir: string;
installedDependencies: Record<string, string>;
latestDependencies: Record<string, string>;
}>;
export declare function getInfo(options: DoctorInfoOptions): Promise<{
appName: string;
appId: any;
appVersion: any;
webDir: string;
installedDependencies: Record<string, string>;
latestDependencies: Record<string, string>;
}>;
export {};