9 lines
271 B
JavaScript
9 lines
271 B
JavaScript
module.exports = class CliParam {
|
|
constructor( name, isOptional, isFlag, needValue, options) {
|
|
this.name = name;
|
|
this.isOptional = isOptional;
|
|
this.isFlag = isFlag;
|
|
this.needValue = needValue;
|
|
this.options = options;
|
|
}
|
|
} |