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

10 lines
272 B
TypeScript

import { Loader } from '../types';
type InstallArgs = {
pkg: string;
label: string;
url: string;
loader: Loader;
};
declare function install({ pkg, label, url, loader }: InstallArgs): Promise<void>;
export { install };
//# sourceMappingURL=install.d.ts.map