@nestia/sdk
Version:
Nestia SDK and Swagger generator
20 lines (19 loc) • 592 B
TypeScript
import { Metadata } from "typia/lib/schemas/metadata/Metadata";
import { IReflectType } from "./IReflectType";
export interface ITypedHttpRouteSuccess {
type: IReflectType;
status: number | null;
contentType: "application/json" | "text/plain" | "application/x-www-form-urlencoded" | "application/json" | null;
encrypted: boolean;
metadata: Metadata;
example?: any;
examples?: Record<string, any>;
setHeaders: Array<{
type: "setter";
source: string;
target?: string;
} | {
type: "assigner";
source: string;
}>;
}