UNPKG

openapi-to-ts

Version:

Generate TypeScript types from OpenAPI 3.0 specs.

7 lines (6 loc) 293 B
import { ITypeScriptInterface } from '../types'; /** * Converts a TypeScript interface object to a string. * @param interfaceObject the TypeScript interface to convert to a string. */ export declare const convertTSInterfaceToString: (interfaceObject: ITypeScriptInterface) => string;