From 1bc3aa8f96d0e4cb0f829aa3266359dce5dfad66 Mon Sep 17 00:00:00 2001 From: Haider Alshamma Date: Wed, 29 May 2024 16:45:05 -0400 Subject: [PATCH] fix: export NDSOption & NDSOptionValue types --- src/Select/index.ts | 2 +- src/index.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Select/index.ts b/src/Select/index.ts index f5bfdc216..3b064ba2c 100644 --- a/src/Select/index.ts +++ b/src/Select/index.ts @@ -1,3 +1,3 @@ export { SelectOption } from "./SelectOption"; -export { default as Select } from "./Select"; +export { default as Select, type NDSOption, type NDSOptionValue } from "./Select"; export * from "./SelectComponents"; diff --git a/src/index.ts b/src/index.ts index ad821a334..f7b17cb12 100644 --- a/src/index.ts +++ b/src/index.ts @@ -60,6 +60,8 @@ export { SelectMenu, SelectMultiValue, SelectOption, + type NDSOption, + type NDSOptionValue, } from "./Select"; export { SortingTable } from "./SortingTable"; export { StatusIndicator, StatusIndicatorValues } from "./StatusIndicator";