UNPKG

@inversify-cn/swagger-express-ts

Version:

Generate and serve swagger.json

11 lines (10 loc) 245 B
export interface IApiPathArgs { path: string; name: string; description?: string; security?: { [key: string]: any[]; }; deprecated?: boolean; } export declare function ApiPath(args: IApiPathArgs): ClassDecorator;