diff --git a/src/TransferList/index.ts b/src/TransferList/index.ts index 076d495e..c2dcd986 100644 --- a/src/TransferList/index.ts +++ b/src/TransferList/index.ts @@ -1,2 +1,2 @@ export { default } from "./TransferList"; -export type { TransferListProps } from "./TransferList.types"; +export type { TransferListProps, TransferListItem } from "./TransferList.types"; diff --git a/src/index.ts b/src/index.ts index 1a1bea10..3c12ce17 100644 --- a/src/index.ts +++ b/src/index.ts @@ -203,7 +203,8 @@ export { } from "./ToggleColorMode"; export { default as TransferList, - type TransferListProps + type TransferListProps, + type TransferListItem } from "./TransferList"; export { default as TreeViewList,