Files
openapi-types/2.0.0/data-types/index.ts

15 lines
506 B
TypeScript

// Base schema properties
export type { BaseSchemaProperties } from "./base-schema"
// Individual schema types
export type { StringSchema } from "./string"
export type { NumberSchema } from "./number"
export type { IntegerSchema } from "./integer"
export type { BooleanSchema } from "./boolean"
export type { FileSchema } from "./file"
export type { ArraySchema } from "./array"
export type { ObjectSchema } from "./object"
// Main schema union type
export type { SwaggerSchema } from "./swagger-schema"