3 lines
166 B
TypeScript
3 lines
166 B
TypeScript
import { AutoInstall } from "./types.js";
|
|
declare function tryInstallPkg(name: string, autoInstall: AutoInstall): Promise<void | undefined>;
|
|
export { tryInstallPkg }; |