emberplus-connection
Version:
Javascript implementation of the Ember+ automation protocol
11 lines • 332 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FunctionArgumentImpl = void 0;
class FunctionArgumentImpl {
constructor(type, name) {
this.type = type;
this.name = name;
}
}
exports.FunctionArgumentImpl = FunctionArgumentImpl;
//# sourceMappingURL=FunctionArgument.js.map