/
opt
/
canhelp
/
node_modules
/
jose
/
dist
/
types
/
util
/
/opt/canhelp/node_modules/jose/dist/types/util
mkdir
upload
Name
Size
Mode
Actions
base64url.d.ts
306
0644
edit
dl
rm
decode_jwt.d.ts
822
0644
edit
dl
rm
decode_protected_header.d.ts
697
0644
edit
dl
rm
errors.d.ts
6045
0644
edit
dl
rm
Edit:
/opt/canhelp/node_modules/jose/dist/types/util/decode_jwt.d.ts
(822B)
/** * JSON Web Token (JWT) Claims Set Decoding (no validation, no signature checking) * * @module */ import type * as types from '../types.d.ts'; /** * Decodes a signed JSON Web Token payload. This does not validate the JWT Claims Set types or * values. This does not validate the JWS Signature. For a proper Signed JWT Claims Set validation * and JWS signature verification use `jose.jwtVerify()`. For an encrypted JWT Claims Set validation * and JWE decryption use `jose.jwtDecrypt()`. * * This function is exported (as a named export) from the main `'jose'` module entry point as well * as from its subpath export `'jose/jwt/decode'`. * * @param jwt JWT token in compact JWS serialization. */ export declare function decodeJwt<PayloadType = types.JWTPayload>(jwt: string): PayloadType & types.JWTPayload;
Save
cmd:
run