Skip to content

Commit 3b0c437

Browse files
committed
Fix forwarded exports
1 parent a68ac00 commit 3b0c437

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/index.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ export type {
2727

2828
// Forward all available exports from the original `react-select` package
2929
export * from "react-select";
30-
export * from "react-select/async";
31-
export * from "react-select/async-creatable";
32-
export * from "react-select/creatable";
30+
export { useAsync } from "react-select/async";
31+
export { useCreatable } from "react-select/creatable";
32+
export type { AsyncProps } from "react-select/async";
33+
export type { CreatableProps } from "react-select/creatable";
34+
export type { AsyncCreatableProps } from "react-select/async-creatable";

0 commit comments

Comments
 (0)