UNPKG

@protocolnebula/ts-openapi-generator

Version:

Build API and models from Swagger/OpenAPI to use in any project type

12 lines 361 B
import { ModelModel } from './model.model'; export declare type Verbs = 'GET' | 'POST' | 'PATCH' | 'DELETE'; export declare class ApiURLModel { url: string; type: Verbs; getModel?: ModelModel; bodyModel?: ModelModel; returnModel?: ModelModel; returnIsArray?: boolean; toString(): string; } //# sourceMappingURL=api-url.model.d.ts.map