You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
395 B

/**
* Downloads `downloadUrl` and unzips the contents to `installPath` while
* updating the message of `loader` at each step.
*/
export declare const downloadAndUnzip: ({ loader, downloadUrl, component, installPath, }: {
loader: import("ora").Ora;
component: string;
downloadUrl: string;
installPath: string;
}) => Promise<void>;
//# sourceMappingURL=downloadAndUnzip.d.ts.map