From e77614bfb8010fcf4a410029ad4423acc252dcdf Mon Sep 17 00:00:00 2001 From: Deepak Prabhakara Date: Thu, 19 Dec 2024 16:52:58 +0000 Subject: [PATCH] small tweak to return type --- lib/jackson.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jackson.ts b/lib/jackson.ts index f03020b3f..6f4575a9d 100644 --- a/lib/jackson.ts +++ b/lib/jackson.ts @@ -13,5 +13,5 @@ export default async function init() { }); } - return (await g.jacksonInstance) as Promise; + return (await g.jacksonInstance) as SAMLJackson; }