useInput.d.ts 220 Bytes EditWeb IDE 1 2 3 4 5 export declare function useInput(handleInput: (event: InputEvent) => void): { handleCompositionStart: () => void; handleCompositionUpdate: (event: any) => void; handleCompositionEnd: (event: any) => void; };