Steps to reproduce:
Open the example and check main.ts
Expected results:
No errors.
Current results:
The following errors may occur:
"Property 'key' does not exist on type 'EventObject & (Event | KeyboardEvent | MouseEvent | PointerEvent | TouchEvent)'."
"Property 'key' does not exist on type 'EventObject & Event'."
Additional information:
The issue occurs because the following code is missing:
TypeScriptinterface EventType extends JQueryEventObject {
cancel?: boolean;
}