UNPKG

openapi-typescript

Version:

Convert OpenAPI 3.0 & 3.1 schemas to TypeScript

7 lines (6 loc) 296 B
import type { GlobalContext, ResponseObject } from "../types.js"; export interface TransformResponseObjectOptions { path: string; ctx: GlobalContext; } export default function transformResponseObject(responseObject: ResponseObject, { path, ctx }: TransformResponseObjectOptions): string;