본문으로 건너뛰기

source-decorators

데코레이터 목록

DecoratorSource
@body()req.body
@query()req.query
@header()req.headers
@uri()req.params
@session()req.session
class Request {
@body('email')
email!: string

@query('limit')
limit!: number

@header('Authorization')
authorization!: string
}