/** * VSCode扩展信息接口 */ export interface VscodeExt { id: string; name: string; version: string; url: string; } /** * VSCode 扩展版本信息 */ export interface VscodeExtVersion { version: string; } /** * 获取指定VSCode扩展的详细信息 * @param ext 扩展ID * @returns Promise 扩展详细信息 */ export declare function getVscodeExtInfo(ext: string): Promise; /** * 下载选定的VSCode扩展 * @param dir 下载目标目录 */ export declare function downloadVscodeExts(dir: string): Promise;