UNPKG

dce-dev-wizard

Version:

Wizard for managing development apps at Harvard DCE.

19 lines (18 loc) 404 B
/** * Type of a node version array from https://nodejs.org/download/release/index.json * @author Gabe Abrams */ declare type NodeVersionArray = { version: string; date: string; files: string[]; npm: string; v8: string; uv: string; zlib: string; openssl: string; modules: string; lts: string | false; security: boolean; }[]; export default NodeVersionArray;