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