From 0e026d62573a88c04ddf0e36ea9d892a35c0af08 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Thu, 7 May 2026 15:11:05 -0700 Subject: [PATCH] fix type of KeyEntry.chain --- lib/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.d.ts b/lib/index.d.ts index 3857f2d..0b29375 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -22,7 +22,7 @@ export type KeyEntry = { certType: 'X.509'; alias: string; date: Date; - chain: Buffer[]; + chain: Certificate[]; protectedPrivateKey: Buffer; }