UNPKG

st-open-api

Version:

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

9 lines (8 loc) 208 B
import { IFormat } from "./i-format"; import { IType } from "./i-type"; import { ISchemaItem } from "./i-schema"; export interface IProperty { type: IType; format: IFormat; items?: ISchemaItem; }