UNPKG

@razi91/types-ol-ext

Version:
11 lines (9 loc) 313 B
import VectorLayer from 'ol/layer/Vector'; import { Options } from 'ol/layer/BaseVector'; interface ClusterOptions extends Options { animationDuration?: number; easingFunction?: (t: number) => number; } export default class AnimatedCluster extends VectorLayer { constructor(param: ClusterOptions); }