UNPKG
component-dbs-core
Version:
latest (1.0.1)
1.0.1
1.0.0
DTO objects shared among device backend
bitbucket.org/npco_dev/component-dbs-core
component-dbs-core
/
dist
/
src
/
authzero
/
utils
/
jwt
/
__mocks__
/
jwtLib.d.ts
8 lines
(7 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
IJwtLib
}
from
'../iJwtLib'
;
import
{
EnvironmentService
}
from
'../../../../common_services/config/envService'
;
export
default
class
JwtLib
implements
IJwtLib
{
private
envService;
constructor
(
envService
:
EnvironmentService
);
decodeJwt
(
input
:
any
):
Promise
<
void
>; }