UNPKG

st-open-api

Version:

Generates API client SDKs from an OpenAPI specification written in OpenAPI version 3.x.x

11 lines (10 loc) 387 B
import { IPropertyClass, IRenderResult } from "../interface/i-property-class"; export declare class PrimitiveTypeProperty implements IPropertyClass { typeName: string; fileName: string; primitiveType: string; constructor(originalName: string); convertName(originalName: string): void; setPrimitiveType(primitiveType: string): void; render(): IRenderResult; }