Files
angular-docs-cn/modules/angular2/src/core/render/xhr.ts
T
2015-08-25 15:33:23 -07:00

6 lines
131 B
TypeScript

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