useInput.d.ts 220 B

12345
  1. export declare function useInput(handleInput: (event: InputEvent) => void): {
  2. handleCompositionStart: () => void;
  3. handleCompositionUpdate: (event: any) => void;
  4. handleCompositionEnd: (event: any) => void;
  5. };