4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
export type VerifyResult<T = any> =
|
|
| { valid: true; payload: T; jti: string }
|
|
| { valid: false; reason: string }
|