UNPKG

@grept/node-plugin

Version:

Plugin for @grt/core. Help to manage nodejs versions of your repos

10 lines (9 loc) 282 B
import { IBaseOutputItem, IBaseInputOptions } from '@grept/common'; export interface IInputOptions extends IBaseInputOptions { nvm?: boolean; engines?: boolean; } export interface IOutputItem extends IBaseOutputItem { nvmVersion?: string; enginesVersion?: string; }