From 111132238dba4056ceecc4ca5c54d0f418eaabb5 Mon Sep 17 00:00:00 2001 From: oofdog <46097282+oofdog@users.noreply.github.com> Date: Mon, 23 Oct 2023 07:39:33 -0400 Subject: [PATCH] TS: Allow nullable date in VerifyOptions (#1644) --- openpgp.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpgp.d.ts b/openpgp.d.ts index bfdcaf96..56175b26 100644 --- a/openpgp.d.ts +++ b/openpgp.d.ts @@ -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; }