swimlane/angular2-data-table

View on GitHub
projects/swimlane/ngx-datatable/src/lib/events.ts

Summary

Maintainability
A
0 mins
Test Coverage
declare let global: any;

/* tslint:disable */
export const MouseEvent = (((typeof window !== 'undefined' && window) as any) || (global as any))
  .MouseEvent as MouseEvent;
export const KeyboardEvent = (((typeof window !== 'undefined' && window) as any) || (global as any))
  .KeyboardEvent as KeyboardEvent;
export const Event = (((typeof window !== 'undefined' && window) as any) || (global as any)).Event as Event;