From 7a1a67c71869ffc737843ae13875cb395d765629 Mon Sep 17 00:00:00 2001 From: Roman Date: Thu, 19 Jan 2023 18:45:18 +0300 Subject: [PATCH] TypeScript: fix signature of `armor` function: add `customComment` (#1585) --- openpgp.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpgp.d.ts b/openpgp.d.ts index d8a5189b..4cb3417e 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, customComment?: string, config?: Config): string; /** * DeArmor an OpenPGP armored message; verify the checksum and return the encoded bytes