--- category: Sensors --- # onStartTyping Fires when users start typing on non-editable elements. ## Usage ```vue ``` ## Type Declarations ```ts /** * Fires when users start typing on non-editable elements. * * @see https://vueuse.org/onStartTyping * @param callback * @param options */ export declare function onStartTyping( callback: (event: KeyboardEvent) => void, options?: ConfigurableDocument, ): void ```