TS: Allow nullable date in VerifyOptions (#1644)

This commit is contained in:
oofdog
2023-10-23 07:39:33 -04:00
committed by GitHub
parent fe420d0bf9
commit 111132238d

2
openpgp.d.ts vendored
View File

@@ -658,7 +658,7 @@ interface VerifyOptions {
/** (optional) detached signature for verification */
signature?: Signature;
/** (optional) use the given date for verification instead of the current time */
date?: Date;
date?: Date | null;
config?: PartialConfig;
}