From c3ab89ea5dbebaf6b4f681b4528112ff00d8b5f3 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 17 Feb 2025 13:40:30 +0300 Subject: [PATCH] refactor: Add reexport types --- src/index.ts | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 0e4ab2d..9785f47 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,10 +5,28 @@ import { relativeValue, checkValuesAgainstBoundaries, } from "./utils"; -import { Direction } from "./types"; +import { + Direction, + type IProps as IRangeProps, + type IRenderMarkParams, + type IRenderThumbParams, + type IRenderTrackParams, + type ITrackBackground, + type IThumbProps, + type IMarkProps, + type ITrackProps, +} from "./types"; export { Range, + type IRangeProps, + type IRenderMarkParams, + type IRenderThumbParams, + type IRenderTrackParams, + type IThumbProps, + type IMarkProps, + type ITrackProps, + type ITrackBackground, getTrackBackground, Direction, useThumbOverlap,