9 lines
230 B
TypeScript
Raw Normal View History

import {Injectable} from 'angular2/src/core/di';
// Make sure not to evaluate this in a non-browser environment!
@Injectable()
export class BrowserXhr {
constructor() {}
build(): any { return <any>(new XMLHttpRequest()); }
}