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,