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
/
utils
/
jsDocUtils.d.ts
5 lines
(4 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
import
*
as
ts
from
'typescript'
;
export
declare
function
getJSDocDescription
(
node
: ts.
Node
):
string
;
export
declare
function
getJSDocTag
(
node
: ts.
Node
,
tagName
:
string
):
string
;
export
declare
function
isExistJSDocTag
(
node
: ts.
Node
,
tagName
:
string
):
boolean
;