From bd0295c094d230302975e9041eaa56bed5e28f25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20O=CC=88man?= Date: Thu, 22 Feb 2024 12:29:14 +0100 Subject: [PATCH] feat: Export the full Bagger class --- lib/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.ts b/lib/index.ts index 2d49dfc..ab2db70 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -1,4 +1,4 @@ -import { bagger } from './bagger'; +import { bagger, Bagger } from './bagger'; import joi from 'joi'; -export { bagger, joi }; +export { bagger, joi, Bagger };