@jhzhu89/azure-client-pool
Version:
Azure client lifecycle management with intelligent caching and authentication
14 lines • 395 B
TypeScript
export interface JwtUserClaims {
userObjectId: string;
tenantId: string;
expiresAt: number;
}
export declare class ParsedJwtToken {
readonly claims: JwtUserClaims;
readonly rawToken: string;
constructor(claims: JwtUserClaims, rawToken: string);
get userObjectId(): string;
get tenantId(): string;
get expiresAt(): number;
}
//# sourceMappingURL=token.d.ts.map