We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a885db commit 27a4d3fCopy full SHA for 27a4d3f
1 file changed
src/index.tsx
@@ -2,9 +2,6 @@ import BaseInput from './BaseInput';
2
import Input from './Input';
3
import TextArea from './TextArea';
4
5
-export { BaseInput };
6
-export { default as ResizableTextArea } from './ResizableTextArea';
7
-
8
export type {
9
AutoSizeType,
10
InputProps,
@@ -14,14 +11,8 @@ export type {
14
11
TextAreaRef,
15
12
} from './interface';
16
13
17
-type CompoundedInput = typeof Input & {
18
- TextArea: typeof TextArea;
19
-};
20
21
-const TypedInput = Input as CompoundedInput;
22
23
-TypedInput.TextArea = TextArea;
+export { default as ResizableTextArea } from './ResizableTextArea';
24
25
-export { TextArea };
+export { BaseInput, TextArea };
26
27
-export default TypedInput;
+export default Input;
0 commit comments