From 785d24d0d2abd8e914009e098640130529cd5dc6 Mon Sep 17 00:00:00 2001 From: haryu703 <34744512+haryu703@users.noreply.github.com> Date: Tue, 2 May 2023 23:59:14 +0900 Subject: [PATCH] Add `revoke` to `Subkey` in type definition (#1639) --- openpgp.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/openpgp.d.ts b/openpgp.d.ts index d6cc9204..4ec9654e 100644 --- a/openpgp.d.ts +++ b/openpgp.d.ts @@ -101,6 +101,7 @@ export class Subkey { public getExpirationTime(date?: Date, config?: Config): Promise public isRevoked(signature: SignaturePacket, key: AnyKeyPacket, date?: Date, config?: Config): Promise; public update(subKey: Subkey, date?: Date, config?: Config): Promise + public revoke(primaryKey: SecretKeyPacket, reasonForRevocation?: ReasonForRevocation, date?: Date, config?: Config): Promise; } export interface User {