@razi91/types-ol-ext
Version:
Type definitions for ol-ext
16 lines (14 loc) • 446 B
TypeScript
import { default as featureAnimation, FeatureAnimationEvent, Options } from './FeatureAnimation';
/** Fade animation: feature fade in
* @constructor
* @extends {featureAnimation}
* @param {featureAnimationOptions} options
*/
declare class Fade extends featureAnimation {
constructor(options?: Options);
/** Animate
* @param {featureAnimationEvent} e
*/
animate(e: FeatureAnimationEvent): boolean;
}
export default Fade;