6 lines
220 B
TypeScript
6 lines
220 B
TypeScript
|
export declare function useInput(handleInput: (event: InputEvent) => void): {
|
||
|
handleCompositionStart: () => void;
|
||
|
handleCompositionUpdate: (event: any) => void;
|
||
|
handleCompositionEnd: (event: any) => void;
|
||
|
};
|