swagger-express-typescript
Version:
Generate and serve swagger.json
13 lines (12 loc) • 895 B
TypeScript
import 'reflect-metadata';
export { IApiPathArgs, ApiPath } from './api-path.decorator';
export { IApiOperationGetArgs, ApiOperationGet, } from './api-operation-get.decorator';
export { IApiOperationPostArgs, ApiOperationPost, } from './api-operation-post.decorator';
export { IApiOperationPutArgs, ApiOperationPut, } from './api-operation-put.decorator';
export { IApiOperationPatchArgs, ApiOperationPatch, } from './api-operation-patch.decorator';
export { IApiOperationDeleteArgs, ApiOperationDelete, } from './api-operation-delete.decorator';
export { IApiModelPropertyArgs, ApiModelProperty, } from './api-model-property.decorator';
export { IApiModelArgs, ApiModel } from './api-model.decorator';
export { SwaggerDefinitionConstant } from './swagger-definition.constant';
export { express, ISwaggerExpressOptions } from './express.configurator';
export { build } from './swagger.builder';