Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

11 lines
356 B
TypeScript

import { Loader } from '../types';
type InstallArgs = {
pkg: string;
label?: string;
loader: Loader;
onSuccess?: () => void;
onFail?: () => void;
};
declare function brewInstall({ pkg, label, loader, onSuccess, onFail, }: InstallArgs): Promise<void | import("ora").Ora>;
export { brewInstall };
//# sourceMappingURL=brewInstall.d.ts.map