Jeff Cross f34f8df319 refactor(xhr): move render's xhr implementation to render/
The existence of this module in the services/ folder led some to believe xhr
is meant to be a general-purpose http library.

Fixes #2305
2015-06-09 10:28:35 -07:00

6 lines
126 B
TypeScript

import {Promise} from 'angular2/src/facade/async';
export class XHR {
get(url: string): Promise<string> { return null; }
}