TypeScript: add missing function definitions to Subkey class (#1588)

Add types for `Subkey.getExpirationTime()`, `.isRevoked()`, `.update()`
This commit is contained in:
Fabien FORESTIER 2023-02-09 23:15:18 +01:00 committed by GitHub
parent 126ab53840
commit 2e4e05369c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
openpgp.d.ts vendored
View File

@ -98,6 +98,9 @@ export class Subkey {
public getCreationTime(): Date;
public getAlgorithmInfo(): AlgorithmInfo;
public getKeyID(): KeyID;
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>
}
export interface User {