UNPKG
@inversify-cn/swagger-express-ts
Version:
latest (1.1.11)
1.1.11
1.1.10
1.1.9
1.1.8
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
Generate and serve swagger.json
inversify-cn/swagger-express-ts
@inversify-cn/swagger-express-ts
/
dist
/
api-path.decorator.d.ts
11 lines
(10 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
interface
IApiPathArgs
{
path
:
string
;
name
:
string
;
description
?:
string
;
security
?: { [
key
:
string
]:
any
[]; };
deprecated
?:
boolean
; }
export
declare
function
ApiPath
(
args
:
IApiPathArgs
):
ClassDecorator
;