ng-openapi-gen
Version:
An OpenAPI 3 codegen for Angular 12+
14 lines (13 loc) • 429 B
TypeScript
import { TagObject } from 'openapi3-ts';
import { GenType } from './gen-type';
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;
}