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 96214d6 commit 8a4d51dCopy full SHA for 8a4d51d
src/JwtHandler.ts
@@ -8,7 +8,7 @@ import {shim} from "util.promisify"
8
import {MissingKeyIdError} from "./MissingKeyIdError"
9
import {UnknownKeyIdError} from "./UnknownKeyIdError"
10
11
-export type PubkeyData = { cert: string }
+export type PubkeyData = { cert: string } | undefined | null
12
export type PrivkeyData = { key: string, passphrase: string, alg: string } | undefined | null
13
14
export type PubkeyResolver = (keyId: string) => PubkeyData | Promise<PubkeyData>
0 commit comments