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:
parent
2f8a8c1c9a
commit
4379bfb7ec
2
openpgp.d.ts
vendored
2
openpgp.d.ts
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user