Files
DefinitelyTyped/types/rx-dom/rx-dom-tests.ts
2017-08-17 14:53:41 -07:00

9 lines
316 B
TypeScript

import * as Rx from 'rx';
// Rx and DOM should both be the same reference
// before rx-dom import, Rx will not contain the DOM namespace
// after rx-dom import, Rx will contain the DOM namespace
// this is the standard approach for importing rx + rx-dom
import { Observable, Subject, DOM as rxdom } from 'rx-dom';