Skip to content

Commit

Permalink
feat(reorganize): ajax observable creator now exported from rxjs/ajax
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Ajax observable should be imported from `rxjs/ajax`.
  • Loading branch information
benlesh committed Jan 12, 2018
1 parent 70058cd commit e971c93
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions spec/ajax/index-spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import * as index from '../../src/ajax/index';
import { expect } from 'chai';

describe('index', () => {
it('should export static ajax observable creator functions', () => {
expect(index.ajax).to.exist;
});
});
1 change: 1 addition & 0 deletions src/ajax/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { ajax } from '../internal/observable/dom/ajax';

0 comments on commit e971c93

Please sign in to comment.