UNPKG
@clsdcltask/dclauth
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Authentication handling utils
github.com/clschalkwyk/dclauth
clschalkwyk/dclauth
@clsdcltask/dclauth
/
build
/
jwt
/
jwt.strategy.d.ts
8 lines
(7 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Strategy
}
from
"passport-jwt"
;
declare
const
JwtStrategy
_base
:
new
(...
args
:
any
[]) =>
Strategy
;
export
declare
class
JwtStrategy
extends
JwtStrategy_base
{
constructor
(
);
validate
(
payload
:
any
):
Promise
<
any
>; }
export
{};