@razi91/types-ol-ext
Version:
Type definitions for ol-ext
17 lines (15 loc) • 486 B
TypeScript
import { default as featureAnimation, FeatureAnimationEvent, Options } from './FeatureAnimation';
/** Do nothing for a given duration
* @constructor
* @extends {featureAnimation}
* @param {featureAnimationShowOptions} options
*
*/
declare class None extends featureAnimation {
constructor(options?: Options);
/** Animate: do nothing during the laps time
* @param {featureAnimationEvent} e
*/
animate(e: FeatureAnimationEvent): boolean;
}
export default None;