UNPKG

keycloak-lambda-authorizer

Version:
12 lines 352 B
import { RSAKey } from '../Options'; export declare type JWKSType = { keys: [any]; }; export interface JWKS { json(publicKey: RSAKey): Promise<JWKSType> | JWKSType; } export declare class DefaultJWKS implements JWKS { publicKeyTransform(publicKey: string): string; json(publicKey: RSAKey): JWKSType; } //# sourceMappingURL=JWKS.d.ts.map