UNPKG

openapi-to-ts

Version:

Generate TypeScript types from OpenAPI 3.0 specs.

7 lines (6 loc) 258 B
import { ITypeScriptType } from '../types'; /** * Converts a TypeScript type object to a string. * @param typeObject the TypeScript type to convert to a string. */ export declare const convertTSTypeToString: (typeObject: ITypeScriptType) => string;