Skip to content

Commit

Permalink
Add alg to SigningKey types (#220)
Browse files Browse the repository at this point in the history
Co-authored-by: David Patrick <david.patrick@auth0.com>
  • Loading branch information
okko and davidpatrick committed Feb 23, 2021
1 parent 596e944 commit 2408cac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.d.ts
Expand Up @@ -44,6 +44,7 @@ declare namespace JwksRsa {

interface CertSigningKey {
kid: string;
alg: string;
getPublicKey(): string;
publicKey: string;
}
Expand All @@ -63,6 +64,7 @@ declare namespace JwksRsa {

interface RsaSigningKey {
kid: string;
alg: string;
getPublicKey(): string;
rsaPublicKey: string;
}
Expand Down

0 comments on commit 2408cac

Please sign in to comment.