Transformed

This commit is contained in:
Tim Schaub
2017-12-11 16:29:33 -07:00
parent 1cdb6a66f0
commit 7f47883c48
737 changed files with 22216 additions and 21609 deletions

View File

@@ -1,12 +1,12 @@
goog.provide('ol.render.ReplayGroup');
/**
* @module ol/render/ReplayGroup
*/
/**
* Base class for replay groups.
* @constructor
* @abstract
*/
ol.render.ReplayGroup = function() {};
var _ol_render_ReplayGroup_ = function() {};
/**
@@ -15,11 +15,12 @@ ol.render.ReplayGroup = function() {};
* @param {ol.render.ReplayType} replayType Replay type.
* @return {ol.render.VectorContext} Replay.
*/
ol.render.ReplayGroup.prototype.getReplay = function(zIndex, replayType) {};
_ol_render_ReplayGroup_.prototype.getReplay = function(zIndex, replayType) {};
/**
* @abstract
* @return {boolean} Is empty.
*/
ol.render.ReplayGroup.prototype.isEmpty = function() {};
_ol_render_ReplayGroup_.prototype.isEmpty = function() {};
export default _ol_render_ReplayGroup_;