UNPKG

@igli.kokici/st-open-api

Version:

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

14 lines (13 loc) 498 B
import { IPropertyClass, IRenderResult } from "../interface/i-property-class"; import { UniqueArray } from "./unique-array"; export declare class InterfaceArrayProperty implements IPropertyClass { originalName: string; refClassName: string; interfaceName: string; fileName: string; description: Array<string>; imports: UniqueArray<string>; constructor(originalName: string, _import: string, refClassName: string); private convertName; render(): IRenderResult; }