@terabits/grapi
Version:
Grapi Schema Generator For GraphQL Server
20 lines (19 loc) • 473 B
JavaScript
;
exports.__esModule = true;
var SimpleValue = (function () {
function SimpleValue(_a) {
var value = _a.value;
this.value = value;
}
SimpleValue.prototype.isScalar = function () {
return true;
};
SimpleValue.prototype.getType = function () {
return '';
};
SimpleValue.prototype.getValue = function () {
return this.value;
};
return SimpleValue;
}());
exports["default"] = SimpleValue;