From 4379bfb7ecc8e7f3c41a8b2ac37987148497e9d5 Mon Sep 17 00:00:00 2001 From: Leo Kotschenreuther Date: Wed, 16 Nov 2022 14:18:06 +0100 Subject: [PATCH] TypeScript: fix signature of armor function (#1576) The `partIndex` and `partTotal` params of the `armor` function are optional. This commit updates the openpgp.d.ts file to reflect this. --- openpgp.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpgp.d.ts b/openpgp.d.ts index d36b424f..52017b3c 100644 --- a/openpgp.d.ts +++ b/openpgp.d.ts @@ -721,7 +721,7 @@ interface VerifyMessageResult { /** * Armor an OpenPGP binary packet block */ -export function armor(messagetype: enums.armor, body: object, partindex: number, parttotal: number, config?: Config): string; +export function armor(messagetype: enums.armor, body: object, partindex?: number, parttotal?: number, config?: Config): string; /** * DeArmor an OpenPGP armored message; verify the checksum and return the encoded bytes