Skip to content

Commit

Permalink
Attempt to fix conflicting star exports bug
Browse files Browse the repository at this point in the history
  • Loading branch information
csandman committed Dec 9, 2022
1 parent f115ce2 commit eb2ceca
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
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 eb2ceca

Please sign in to comment.