UNPKG

shyft

Version:

Model driven GraphQL API framework

14 lines (13 loc) 440 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isComplexDataType = exports.ComplexDataType = void 0; var ComplexDataType = /** @class */ (function () { function ComplexDataType() { } return ComplexDataType; }()); exports.ComplexDataType = ComplexDataType; var isComplexDataType = function (obj) { return obj instanceof ComplexDataType; }; exports.isComplexDataType = isComplexDataType;