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