https://github.com/angular/angular
Raw File
Tip revision: acffa22a35859df8105733edb990f1a8406c4387 authored by Kara Erickson on 26 September 2018, 19:02:03 UTC
release: cut the v6.1.9 release
Tip revision: acffa22
resource_loader.ts
/**
 * @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
 */

/**
 * An interface for retrieving documents by URL that the compiler uses
 * to load templates.
 */
export class ResourceLoader {
  get(url: string): Promise<string>|string { return ''; }
}
back to top