3 lines
166 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
import { AutoInstall } from "./types.js";
declare function tryInstallPkg(name: string, autoInstall: AutoInstall): Promise<void | undefined>;
export { tryInstallPkg };