/** * npm 版本信息 */ export interface NpmVersionInfo { current: string; latest: string; needsUpdate: boolean; } /** * 从 npm registry 获取最新版本 */ export declare function getLatestVersion(): Promise; /** * 检查是否需要更新 */ export declare function checkForUpdates(): Promise; //# sourceMappingURL=npm.d.ts.map