From a5b9238306c0ba8757bc8bcbd5daafb3152c1248 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Tue, 10 Feb 2026 21:15:52 +0300 Subject: [PATCH] chore: add export/import --- src/shared/lib/index.ts | 9 ++++++++- src/shared/lib/utils/index.ts | 1 + 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/shared/lib/index.ts b/src/shared/lib/index.ts index 99ade48..e2f6b3f 100644 --- a/src/shared/lib/index.ts +++ b/src/shared/lib/index.ts @@ -24,7 +24,14 @@ export { type VirtualizerOptions, } from './helpers'; -export { splitArray } from './utils'; +export { + buildQueryString, + clampNumber, + getDecimalPlaces, + roundToStepPrecision, + smoothScroll, + splitArray, +} from './utils'; export { springySlideFade } from './transitions'; diff --git a/src/shared/lib/utils/index.ts b/src/shared/lib/utils/index.ts index 08a788f..8bfc45f 100644 --- a/src/shared/lib/utils/index.ts +++ b/src/shared/lib/utils/index.ts @@ -11,4 +11,5 @@ export { clampNumber } from './clampNumber/clampNumber'; export { debounce } from './debounce/debounce'; export { getDecimalPlaces } from './getDecimalPlaces/getDecimalPlaces'; export { roundToStepPrecision } from './roundToStepPrecision/roundToStepPrecision'; +export { smoothScroll } from './smoothScroll/smoothScroll'; export { splitArray } from './splitArray/splitArray';