2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2015-12-03 18:49:09 -05:00
|
|
|
/**
|
|
|
|
* An interface for retrieving documents by URL that the compiler uses
|
|
|
|
* to load templates.
|
|
|
|
*/
|
2016-08-17 12:24:44 -04:00
|
|
|
export class ResourceLoader {
|
2017-05-17 18:39:08 -04:00
|
|
|
get(url: string): Promise<string>|string { return ''; }
|
2015-01-30 03:43:21 -05:00
|
|
|
}
|