fix(exports): update module exports

This commit is contained in:
Adam Bradley
2016-09-14 15:54:20 -05:00
parent 8585427fb4
commit 6784f5e744
8 changed files with 67 additions and 114 deletions

View File

@ -844,19 +844,3 @@ export const UserAgent = new OpaqueToken('USERAGENT');
export const UserNavigatorPlatform = new OpaqueToken('USERNAVPLT');
export const UserDir = new OpaqueToken('USERDIR');
export const UserLang = new OpaqueToken('USERLANG');
export function providePlatform(): any {
return {
provide: Platform,
useFactory: setupPlatform,
deps: [
QueryParams,
UserAgent,
UserNavigatorPlatform,
UserDir,
UserLang,
NgZone
]
};
}