UNPKG
cf-auth0
Version:
latest (0.6.3)
0.6.3
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
0.4.0
0.3.0
0.2.2
0.2.1
0.2.0
0.1.0
0.0.2
0.0.1
🔐 Auth0 Client on Cloudflare Pages
github.com/jill64/cf-auth0
jill64/cf-auth0
cf-auth0
/
dist
/
server
/
auth
/
jsonwebtoken
/
jws
/
lib
/
jwsVerify.d.ts
3 lines
(2 loc)
•
176 B
TypeScript
View Raw
1
2
3
import
type
{
KeyObject
}
from
'node:crypto'
;
export
declare
const
jwsVerify
:
(
jwsSig
:
string
,
algorithm
:
string
,
secretOrKey
:
CryptoKey
|
KeyObject
|
string
) =>
Promise
<
any
>;