UNPKG

@nestia/sdk

Version:

Nestia SDK and Swagger generator

17 lines (16 loc) 616 B
import { IMetadataComponents, IMetadataSchema } from "@typia/interface"; import { MetadataFactory } from "../internal/legacy"; import { HttpResponseContentTypeUtil } from "../utils/HttpResponseContentTypeUtil"; import { IReflectType } from "./IReflectType"; export interface IReflectHttpOperationSuccess { type: IReflectType; status: number; contentType: HttpResponseContentTypeUtil.Response; binary: boolean; encrypted: boolean; components: IMetadataComponents; metadata: IMetadataSchema; validate: MetadataFactory.Validator; example?: any; examples?: Record<string, any>; }