Interface DownloadOptions

interface DownloadOptions {
    download: ((requestInfo) => Promise<Buffer>);
    remotePlatform: RemotePlatform;
    theiaVersion: string;
}

Properties

download: ((requestInfo) => Promise<Buffer>)

Type declaration

    • (requestInfo): Promise<Buffer>
    • Parameters

      • requestInfo: string | RequestOptions

      Returns Promise<Buffer>

remotePlatform: RemotePlatform
theiaVersion: string