Skip to content

Commit

Permalink
fix(global): add missing interface element to fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Mar 3, 2018
1 parent 7ecf3dd commit fa2bbd3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { DOMWindow, JSDOM } from 'jsdom';
export interface IGlobal extends DOMWindow {
MutationObserver: typeof MutationObserver;
Element: typeof Element;
NodeList: typeof NodeList;
jsdom: typeof JSDOM;
SVGElement: typeof SVGElement;
XMLHttpRequest: typeof XMLHttpRequest;
Expand Down

0 comments on commit fa2bbd3

Please sign in to comment.