fix(http): change type declarations to interfaces and export EventEmitter

This commit is contained in:
Jeff Cross
2015-08-25 10:11:28 -07:00
parent 38a5a2a955
commit 10437ab85c
2 changed files with 7 additions and 4 deletions
+3 -2
View File
@@ -41,8 +41,9 @@ export {
RequestCredentialsOpts,
RequestCacheOpts,
RequestModesOpts
} from './src/enums';
export {URLSearchParams} from './src/url_search_params';
} from './src/http/enums';
export {URLSearchParams} from './src/http/url_search_params';
export {EventEmitter, Observable} from './src/core/facade/async';
/**
* Provides a basic set of injectables to use the {@link Http} service in any application.