UNPKG

@electron/get

Version:

Utility for downloading artifacts from different versions of Electron

25 lines 1.09 kB
import { GotDownloader } from './GotDownloader.js'; export { GotDownloader }; export var ElectronDownloadCacheMode; (function (ElectronDownloadCacheMode) { /** * Reads from the cache if present * Writes to the cache after fetch if not present */ ElectronDownloadCacheMode[ElectronDownloadCacheMode["ReadWrite"] = 0] = "ReadWrite"; /** * Reads from the cache if present * Will **not** write back to the cache after fetching missing artifact */ ElectronDownloadCacheMode[ElectronDownloadCacheMode["ReadOnly"] = 1] = "ReadOnly"; /** * Skips reading from the cache * Will write back into the cache, overwriting anything currently in the cache after fetch */ ElectronDownloadCacheMode[ElectronDownloadCacheMode["WriteOnly"] = 2] = "WriteOnly"; /** * Bypasses the cache completely, neither reads from nor writes to the cache */ ElectronDownloadCacheMode[ElectronDownloadCacheMode["Bypass"] = 3] = "Bypass"; })(ElectronDownloadCacheMode || (ElectronDownloadCacheMode = {})); //# sourceMappingURL=types.js.map