Skip to content

Commit

Permalink
Add comment about empty export
Browse files Browse the repository at this point in the history
  • Loading branch information
csandman committed Oct 17, 2023
1 parent e82dbf2 commit 3e74e23
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/module-augmentation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ import type {
Variant,
} from "./types";

/**
* This is necessary for the module `react-select/base` to be seen by TypeScript.
* Without it the module augmentation will not work properly.
*
* @see {@link https://github.com/JedWatson/react-select/pull/5762#issuecomment-1765467219}
*/
export type {} from "react-select/base";

/**
Expand Down

0 comments on commit 3e74e23

Please sign in to comment.