2016-06-23 09:47:54 -07: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 15:49:09 -08:00
|
|
|
/**
|
|
|
|
* An interface for retrieving documents by URL that the compiler uses
|
|
|
|
* to load templates.
|
|
|
|
*/
|
2016-08-17 09:24:44 -07:00
|
|
|
export class ResourceLoader {
|
2020-04-08 10:14:18 -07:00
|
|
|
get(url: string): Promise<string>|string {
|
|
|
|
return '';
|
|
|
|
}
|
2015-01-30 09:43:21 +01:00
|
|
|
}
|