@swimlane/ngx-datatable 11.3.1 → 11.3.2

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/src/events.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  declare let global: any;
2
2
 
3
3
  /* tslint:disable:variable-name */
4
- export const MouseEvent = ((global as any) || (window as any)).MouseEvent as MouseEvent;
5
- export const KeyboardEvent = ((global as any) || (window as any)).KeyboardEvent as KeyboardEvent;
6
- export const Event = ((global as any) || (window as any)).Event as Event;
4
+ export const MouseEvent = ((window as any) || (global as any)).MouseEvent as MouseEvent;
5
+ export const KeyboardEvent = ((window as any) || (global as any)).KeyboardEvent as KeyboardEvent;
6
+ export const Event = ((window as any) || (global as any)).Event as Event;