From d6f8f3684572e0b023ee24757fed15453bb53fe8 Mon Sep 17 00:00:00 2001 From: Mozafar Haider Date: Tue, 24 Sep 2024 13:34:31 +0100 Subject: [PATCH] refactor: remove unnecessary export before merging to main branch --- src/index.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/index.ts b/src/index.ts index 3a11700..28e0a6d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,9 +3,4 @@ import './locales/index.js' export * from './hooks' export * as constants from './constants' export * from './period-calculation' -export { - getNowInCalendar, - validateDateString, - convertFromIso8601, - convertToIso8601, -} from './utils' +export { getNowInCalendar, convertFromIso8601, convertToIso8601 } from './utils'