From 2b8105d45c99e729afe075d4d7e0200eec1496b4 Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Thu, 19 Feb 2026 11:21:40 -0600 Subject: [PATCH] Changed 'import' to 'import type' and seems to work fine (should resolve downstream issue hopefully) --- src/VaultKeys.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VaultKeys.ts b/src/VaultKeys.ts index d598153..d542749 100644 --- a/src/VaultKeys.ts +++ b/src/VaultKeys.ts @@ -7,7 +7,7 @@ import { registry } from 'node-jose/lib/jwk/keystore.js'; // @ts-ignore import merge from 'node-jose/lib/util/merge.js'; import type { Bytes } from 'node-forge'; -import { pki } from 'node-forge'; +import type { pki } from 'node-forge'; import { logMessage, LogLevel } from '@BridgemanAccessible/ba-logging';