Skip to content

Documents for @litert/jwt / Types / IJwtParseResult

Interface: IJwtParseResult

Defined in: src/lib/Types.ts:391

The type of the result returned by parse API.

Properties

header: IJwtHeader

Defined in: src/lib/Types.ts:396

The decoded header of the JWT.


payload

payload: IJwtPayload

Defined in: src/lib/Types.ts:401

The decoded payload of the JWT.


signature

signature: Buffer

Defined in: src/lib/Types.ts:411

The signature of the JWT.


signedContent

signedContent: string

Defined in: src/lib/Types.ts:406

The content to be signed, which is the base64url-encoded header and payload.