0c1f9dab54
Closes #4648
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
import {Injectable} from 'angular2/angular2';
|
|
|
|
// Make sure not to evaluate this in a non-browser environment!
|
|
@Injectable()
|
|
export class BrowserXhr {
|
|
constructor() {}
|
|
build(): any { return <any>(new XMLHttpRequest()); }
|
|
}
|