7 lines
173 B
TypeScript

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