install-pkg.d.ts 257 B

12345678
  1. import { AutoInstall } from './types.js';
  2. import '@antfu/utils';
  3. import '../customisations/defaults.js';
  4. import '@iconify/types';
  5. declare function tryInstallPkg(name: string, autoInstall: AutoInstall): Promise<void | undefined>;
  6. export { tryInstallPkg };