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.
This commit is contained in:
Leo Kotschenreuther 2022-11-16 14:18:06 +01:00 committed by GitHub
parent 2f8a8c1c9a
commit 4379bfb7ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
openpgp.d.ts vendored
View File

@ -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