UNPKG
@sologence/nestjs-auth
Version:
latest (2.0.1)
2.0.1
1.0.0
## Overview
@sologence/nestjs-auth
/
dist
/
auth
/
interfaces
/
jwt-config.interface.d.ts
9 lines
(8 loc)
•
190 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
JwtConfigOptions
{
secret
:
string
;
expiresIn
?:
string
|
number
;
issuer
?:
string
; }
export
interface
AuthConfigProvider
{
getJwtConfig
():
JwtConfigOptions
; }