@veraid/kliento
Version:
Self-contained client authentication tokens
17 lines (16 loc) • 400 B
TypeScript
import type { ClaimSet } from './ClaimSet.js';
/**
* The result of verifying a token bundle.
*/
export interface TokenBundleVerification {
/**
* The claims in the token bundle.
*/
readonly claims: ClaimSet;
/**
* The id of the member that signed the token bundle.
*
* For example, `example.com` or `alice@example.com`.
*/
readonly subjectId: string;
}