simple-keyboard 3.7.80 → 3.7.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/interfaces.d.ts
CHANGED
|
@@ -237,6 +237,10 @@ export interface KeyboardOptions {
|
|
|
237
237
|
* Retrieves the released key
|
|
238
238
|
*/
|
|
239
239
|
onKeyReleased?: (button: string, e?: MouseEvent) => any;
|
|
240
|
+
/**
|
|
241
|
+
* Executes the callback function before an input is about to be updated
|
|
242
|
+
*/
|
|
243
|
+
beforeInputUpdate?: (instance: SimpleKeyboard) => void;
|
|
240
244
|
/**
|
|
241
245
|
* Module options can have any format
|
|
242
246
|
*/
|