mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
25 lines
518 B
JavaScript
25 lines
518 B
JavaScript
/** @externs */
|
|
|
|
/** @record @struct */
|
|
function PublicTestability() {}
|
|
|
|
/**
|
|
* @return {?}
|
|
*/
|
|
PublicTestability.prototype.isStable = function () {};
|
|
|
|
/**
|
|
* @param {?} callback
|
|
* @param {?} timeout
|
|
* @param {?} updateCallback
|
|
* @return {?}
|
|
*/
|
|
PublicTestability.prototype.whenStable = function (callback, timeout, updateCallback) {};
|
|
|
|
/**
|
|
* @param {?} using
|
|
* @param {?} provider
|
|
* @param {?} exactMatch
|
|
* @return {?}
|
|
*/
|
|
PublicTestability.prototype.findProviders = function (using, provider, exactMatch) {};
|