este-library-oldschool
Version:
Library for github.com/steida/este.git
19 lines (17 loc) • 499 B
JavaScript
// Generated by github.com/steida/coffee2closure 900.1.18
/**
@fileoverview Interface for URL loading strategy. It describes what should
happen when user load next URL. Should be loaded sync, async, or should be
loaded only the last requsted URL?
*/
goog.provide('este.labs.app.UrlLoader');
/**
@interface
*/
este.labs.app.UrlLoader = function() {};
/**
@param {string} url
@param {function(): !goog.Promise} load
@return {!goog.Promise}
*/
este.labs.app.UrlLoader.prototype.load;