https://github.com/angular/angular
Raw File
Tip revision: 42599451288be5f523365ed8e8e38c02080a6d95 authored by Andrew Scott on 19 May 2021, 18:12:30 UTC
release: cut the v12.1.0-next.2 release (#42178)
Tip revision: 4259945
resource_loader.ts
/**
 * @license
 * Copyright Google LLC 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