Automated class transform
npx lebab --replace src --transform class
This commit is contained in:
@@ -6,21 +6,20 @@
|
||||
* @constructor
|
||||
* @abstract
|
||||
*/
|
||||
const ReplayGroup = function() {};
|
||||
class ReplayGroup {
|
||||
/**
|
||||
* @abstract
|
||||
* @param {number|undefined} zIndex Z index.
|
||||
* @param {module:ol/render/ReplayType} replayType Replay type.
|
||||
* @return {module:ol/render/VectorContext} Replay.
|
||||
*/
|
||||
getReplay(zIndex, replayType) {}
|
||||
|
||||
/**
|
||||
* @abstract
|
||||
* @return {boolean} Is empty.
|
||||
*/
|
||||
isEmpty() {}
|
||||
}
|
||||
|
||||
/**
|
||||
* @abstract
|
||||
* @param {number|undefined} zIndex Z index.
|
||||
* @param {module:ol/render/ReplayType} replayType Replay type.
|
||||
* @return {module:ol/render/VectorContext} Replay.
|
||||
*/
|
||||
ReplayGroup.prototype.getReplay = function(zIndex, replayType) {};
|
||||
|
||||
|
||||
/**
|
||||
* @abstract
|
||||
* @return {boolean} Is empty.
|
||||
*/
|
||||
ReplayGroup.prototype.isEmpty = function() {};
|
||||
export default ReplayGroup;
|
||||
|
||||
Reference in New Issue
Block a user