UNPKG

json-schema-typescript-generator

Version:
7 lines 329 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isBasicType = void 0; const BASIC_TYPES = new Set(['string', 'number', 'integer', 'object', 'array', 'boolean', 'null']); const isBasicType = (type) => BASIC_TYPES.has(type); exports.isBasicType = isBasicType; //# sourceMappingURL=Schema.js.map