mirror of
https://github.com/LukeHagar/openapi-types.git
synced 2025-12-06 04:20:29 +00:00
10 lines
405 B
TypeScript
10 lines
405 B
TypeScript
// Individual schema types
|
|
export type { ReferenceSchema } from "./reference"
|
|
export type { StringSchema } from "./string"
|
|
export type { NumberSchema } from "./number"
|
|
export type { IntegerSchema } from "./integer"
|
|
export type { BooleanSchema } from "./boolean"
|
|
export type { ArraySchema } from "./array"
|
|
export type { ObjectSchema } from "./object"
|
|
export type { CompositionSchema } from "./composition"
|