mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
9 lines
273 B
JavaScript
9 lines
273 B
JavaScript
/**A parameter definition for Command Completion. */
|
|
export class Parameter {
|
|
constructor(name, summary, parameterType) {
|
|
this.Name = name;
|
|
this.Summary = summary;
|
|
this.ParameterType = parameterType;
|
|
}
|
|
}
|
|
//# sourceMappingURL=Parameter.js.map
|