@capgo/cli
Version:
A CLI to upload to capgo servers
26 lines (25 loc) • 807 B
TypeScript
interface DoctorInfoOptions {
packageJson?: string;
}
export declare function computeDoctorAnalyticsTags(installed: Record<string, string>, latest: Record<string, string>): {
is_outdated: boolean;
dependency_count: number;
outdated_count: number;
};
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 {};