UNPKG

node-version-use

Version:

Cross-platform solution for using multiple versions of node. Useful for compatibility testing

6 lines (5 loc) 398 B
import type { InstallOptions, InstallResult } from 'node-version-install'; type InstallCallback = (err?: Error | null, results?: InstallResult[]) => void; type InstallVersionFn = (version: string, options: InstallOptions, callback: InstallCallback) => void; export default function loadNodeVersionInstall(callback: (err?: Error | null, installVersion?: InstallVersionFn) => void): void; export {};