UNPKG
bb-inspired
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Core library for BB-inspired NestJS backend
bb-inspired
/
dist
/
modules
/
auth
/
pipes
/
jwt-validation.pipe.d.ts
6 lines
(5 loc)
•
180 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
PipeTransform
}
from
'@nestjs/common'
;
export
declare
class
JwtValidationPipe
implements
PipeTransform
{
private
readonly
logger;
transform
(
value
:
any
):
string
; }