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.
|
import { Loader } from '../types';
|
|
declare 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
|