Skip to content

Commit

Permalink
Merge pull request #230 from csandman/star-exports-fix
Browse files Browse the repository at this point in the history
Fix `conflicting star exports` bug
  • Loading branch information
csandman committed Dec 9, 2022
2 parents f115ce2 + eb2ceca commit 4752de8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/index.ts
Expand Up @@ -27,6 +27,8 @@ export type {

// Forward all available exports from the original `react-select` package
export * from "react-select";
export * from "react-select/async";
export * from "react-select/async-creatable";
export * from "react-select/creatable";
export { useAsync } from "react-select/async";
export { useCreatable } from "react-select/creatable";
export type { AsyncProps } from "react-select/async";
export type { CreatableProps } from "react-select/creatable";
export type { AsyncCreatableProps } from "react-select/async-creatable";

0 comments on commit 4752de8

Please sign in to comment.