mirror of
https://github.com/LukeHagar/openapi-types.git
synced 2025-12-06 04:20:29 +00:00
15 lines
506 B
TypeScript
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"
|