UNPKG
tsoa-custom-decorators
Version:
latest (1.1.10-custom-decorators)
1.1.10-custom-decorators
1.1.9-custom-decorators
1.1.8-custom-decorators
Build swagger-compliant REST APIs using TypeScript and Node
github.com/lukeautry/tsoa
lukeautry/tsoa
tsoa-custom-decorators
/
dist
/
decorators
/
methods.d.ts
6 lines
(5 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
export
declare
function
Get
(
value
?:
string
):
any
;
export
declare
function
Post
(
value
?:
string
):
any
;
export
declare
function
Patch
(
value
?:
string
):
any
;
export
declare
function
Put
(
value
?:
string
):
any
;
export
declare
function
Delete
(
value
?:
string
):
any
;