7 lines
363 B
TypeScript
7 lines
363 B
TypeScript
/// <reference types="node" />
|
|
import * as https from 'https';
|
|
export declare function getVSCodeDownloadUrl(version: string): string;
|
|
export declare function urlToOptions(url: string): https.RequestOptions;
|
|
export declare function downloadDirToExecutablePath(dir: string): string;
|
|
export declare function insidersDownloadDirToExecutablePath(dir: string): string;
|