data-to-jsonschema-to-ts
Version:
Convert plain javascript objects to JSON Schema and TypeScript typings
14 lines • 359 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ANY_TYPE = void 0;
exports.ANY_TYPE = {
anyOf: [
{ type: "null" },
{ type: "boolean" },
{ type: "number" },
{ type: "string" },
{ type: "object" },
{ type: "array" },
],
};
//# sourceMappingURL=json-schema-types.js.map