UNPKG

dce-dev-wizard

Version:

Wizard for managing development apps at Harvard DCE.

8 lines (7 loc) 280 B
/** * Get the current LTS Node version from the Node.js website. * @author Gabe Abrams * @returns major version of Node.js (e.g. 22) or null if not found */ declare const getCurrentEvenLTSNodeVersion: () => Promise<number | null>; export default getCurrentEvenLTSNodeVersion;