"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Parameter = void 0; class Parameter { constructor() { this.name = ""; this.type = ""; } get() { return `${this.type} ${this.name}`; } } exports.Parameter = Parameter; //# sourceMappingURL=Parameter.js.map