Add revoke to Subkey in type definition (#1639)

This commit is contained in:
haryu703 2023-05-02 23:59:14 +09:00 committed by GitHub
parent 726ee55de4
commit 785d24d0d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

1
openpgp.d.ts vendored
View File

@ -101,6 +101,7 @@ export class Subkey {
public getExpirationTime(date?: Date, config?: Config): Promise<Date | typeof Infinity | null>
public isRevoked(signature: SignaturePacket, key: AnyKeyPacket, date?: Date, config?: Config): Promise<boolean>;
public update(subKey: Subkey, date?: Date, config?: Config): Promise<void>
public revoke(primaryKey: SecretKeyPacket, reasonForRevocation?: ReasonForRevocation, date?: Date, config?: Config): Promise<Subkey>;
}
export interface User {