UNPKG

@nestia/sdk

Version:

Nestia SDK and Swagger generator

14 lines (13 loc) 498 B
import { IMetadataComponents, IMetadataSchema } from "@typia/interface"; import { MetadataFactory } from "../internal/legacy"; import { IReflectType } from "./IReflectType"; export interface IReflectHttpOperationException { status: number | "2XX" | "3XX" | "4XX" | "5XX"; description: string | null; example?: any; examples?: Record<string, any>; type: IReflectType; metadata: IMetadataSchema; components: IMetadataComponents; validate: MetadataFactory.Validator; }