diff --git a/src/index.tsx b/src/index.tsx index 56cf330..04d8e68 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -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;