UNPKG

ng-openapi-gen

Version:

An OpenAPI 3.0 and 3.1 codegen for Angular 16+

14 lines (13 loc) 435 B
import { GenType } from './gen-type'; import { TagObject } from './openapi-typings'; import { Operation } from './operation'; import { Options } from './options'; /** * Context to generate a service */ export declare class Service extends GenType { operations: Operation[]; constructor(tag: TagObject, operations: Operation[], options: Options); protected skipImport(): boolean; protected initPathToRoot(): string; }