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
/
jwsSign.d.ts
9 lines
(8 loc)
•
236 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
JWTHeaderParameters
,
JWTPayload
}
from
'jose'
;
export
declare
const
jwsSign
:
(
opts
: { header: JWTHeaderParameters; payload: JWTPayload; secret:
string
; privateKey?:
string
; encoding:
"utf8"
; }
) =>
any
;