We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9cee65 commit 45575a6Copy full SHA for 45575a6
index.d.ts
@@ -30,13 +30,13 @@ declare namespace JwksRsa {
30
timeout?: number;
31
requestAgent?: HttpAgent | HttpsAgent;
32
fetcher?(jwksUri: string): Promise<{ keys: any }>;
33
- getKeysInterceptor?(): Promise<UnknownKey[]>;
+ getKeysInterceptor?(): Promise<JSONWebKey[]>;
34
}
35
36
- interface UnknownKey {
+ interface JSONWebKey {
37
kid: string,
38
alg: string,
39
- [key: string]: any
+ [key: string]: any
40
41
42
interface CertSigningKey {
0 commit comments