@jhzhu89/azure-client-pool
Version:
Azure client lifecycle management with intelligent caching and authentication
12 lines • 456 B
TypeScript
import { type ParsedJwtToken } from "./token.js";
import { type JwtConfig } from "../../config/configuration.js";
export declare class JwtHandler {
private readonly jwksClient;
private readonly config;
constructor(config: JwtConfig);
validateToken(accessToken: string): Promise<ParsedJwtToken>;
isValid(accessToken: string): Promise<boolean>;
private verifyToken;
private extractClaims;
}
//# sourceMappingURL=validator.d.ts.map