diff options
Diffstat (limited to 'src/@types')
| -rw-r--r-- | src/@types/http-signature.d.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/@types/http-signature.d.ts b/src/@types/http-signature.d.ts index 6366b2addd..8d484312dc 100644 --- a/src/@types/http-signature.d.ts +++ b/src/@types/http-signature.d.ts @@ -19,10 +19,12 @@ declare module 'http-signature' { clockSkew?: number; } - interface IParsedSignature { + interface IParsedSignature { scheme: string; params: ISignature; signingString: string; + algorithm: string; + keyId: string; } type RequestSignerConstructorOptions = |