UNPKG

@electron/get

Version:

Utility for downloading artifacts from different versions of Electron

9 lines 432 B
// TODO: Resolve the downloader or default to GotDownloader // Current thoughts are a dot-file traversal for something like // ".electron.downloader" which would be a text file with the name of the // npm module to import() and use as the downloader import { GotDownloader } from './GotDownloader.js'; export async function getDownloaderForSystem() { return new GotDownloader(); } //# sourceMappingURL=downloader-resolver.js.map