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
/
security.js
10 lines
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
/** *
@param
{
name
} security name from securityDefinitions */
function
Security
(
name, scopes
) {
return
function
(
) {
return
; }; }
exports
.
Security
=
Security
;
//# sourceMappingURL=security.js.map