mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* [react-select] Fix the default exported component by using the StateManager. * Follow more strictly the react-select's library types.
21 lines
847 B
TypeScript
21 lines
847 B
TypeScript
// Type definitions for react-select 2.0
|
|
// Project: https://github.com/JedWatson/react-select#readme
|
|
// Definitions by: Claas Ahlrichs <https://github.com/claasahl>
|
|
// Jon Freedman <https://github.com/jonfreedman>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.9
|
|
|
|
import SelectBase from './lib/Select';
|
|
import { StateManager } from './lib/stateManager';
|
|
|
|
export default StateManager;
|
|
|
|
export { SelectBase };
|
|
export { default as Async } from './lib/Async';
|
|
export { default as AsyncCreatable } from './lib/AsyncCreatable';
|
|
export { default as Creatable } from './lib/Creatable';
|
|
export { createFilter } from './lib/filters';
|
|
export { default as makeAnimated } from './lib/animated/index';
|
|
export { components } from './lib/components/index';
|
|
export { mergeStyles } from './lib/styles';
|