Skip to content

Commit

Permalink
chore: export internal type and func for reuse
Browse files Browse the repository at this point in the history
  • Loading branch information
aojunhao123 committed Oct 30, 2024
1 parent e3b6dd6 commit 6279910
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import BaseInput from './BaseInput';
import Input from './Input';

export { BaseInput };
import { triggerFocus, type InputFocusOptions } from './utils/commonUtils';

export type { InputProps, InputRef } from './interface';
export type { InputFocusOptions };
export { BaseInput };
export { triggerFocus };

export default Input;

0 comments on commit 6279910

Please sign in to comment.