fix(typescript): allow Buffer when verifying detached signature

This commit is contained in:
Filip Skokan 2020-09-03 18:29:02 +02:00
parent 4c23bd65fe
commit cadbd047ca

2
types/index.d.ts vendored
View file

@ -311,7 +311,7 @@ export namespace JWKS {
export namespace JWS {
interface JWSJSON {
payload: string;
payload: string | Buffer;
}
interface JWSRecipient {