Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
14 lines
704 B
Plaintext
14 lines
704 B
Plaintext
import type { JWTPayload } from '../types';
|
|
/**
|
|
* 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 = JWTPayload>(jwt: string): PayloadType & JWTPayload;
|