2015-11-16 16:58:24 -05:00
|
|
|
// TODO: vsavkin rename it into TemplateLoader
|
2015-12-03 18:49:09 -05:00
|
|
|
/**
|
|
|
|
* An interface for retrieving documents by URL that the compiler uses
|
|
|
|
* to load templates.
|
|
|
|
*/
|
2015-01-30 03:43:21 -05:00
|
|
|
export class XHR {
|
2015-05-18 14:57:20 -04:00
|
|
|
get(url: string): Promise<string> { return null; }
|
2015-01-30 03:43:21 -05:00
|
|
|
}
|