UNPKG

swagger-typescript-generator

Version:

Generate typescript code from swagger.json. Before start this project I try use [swagger-typescript-codegen](https://github.com/mtennoe/swagger-typescript-codegen) based on [mustache templates](https://github.com/mtennoe/swagger-js-codegen/tree/master/lib

17 lines (16 loc) 548 B
import { SwaggerDoc } from './swagger-doc'; import { SwaggerBase } from "./swagger-base"; import { SwaggerBasePrivateProps } from "./swagger-base-private-props"; export interface ISwaggerPath { } interface PrivateProps extends SwaggerBasePrivateProps<SwaggerDoc> { } export declare class SwaggerPath extends SwaggerBase<SwaggerDoc, PrivateProps> implements ISwaggerPath { name: string; url: string; tags: string[]; httpMethods: string[]; constructor(parent: SwaggerDoc, key: string, source: any); init(): void; } export {};