9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
|
/**
|
||
|
* Interface for Decoded JWT tokens.
|
||
|
*/
|
||
|
export interface DecodedAuthToken {
|
||
|
header: string;
|
||
|
JWSPayload: string;
|
||
|
JWSSig: string;
|
||
|
}
|
||
|
//# sourceMappingURL=DecodedAuthToken.d.ts.map
|