diff --git a/lib/utils/debounce.html b/lib/utils/debounce.html index 6ca175fc04..dd01ea8286 100644 --- a/lib/utils/debounce.html +++ b/lib/utils/debounce.html @@ -18,6 +18,11 @@ /** @typedef {{run: function(function(), number=):number, cancel: function(number)}} */ let AsyncModule; // eslint-disable-line no-unused-vars + /** + * Collapse multiple callbacks into one invocation after a timer. + * + * @memberof Polymer + */ class Debouncer { constructor() { this._asyncModule = null; @@ -107,9 +112,6 @@ } } - /** - * @memberof Polymer - */ Polymer.Debouncer = Debouncer; })();