UNPKG

@goongmaps/goong-map-react

Version:

A fork of react-map-gl. React components for Goong JS

26 lines (24 loc) 656 B
/** * Flowtype definitions for transition-interpolator * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import type { MapStateProps } from "../map-state"; declare export default class TransitionInterpolator { propNames: Array<string>; initializeProps( startProps: MapStateProps, endProps: MapStateProps ): { start: any, end: any, ... }; arePropsEqual(currentProps: MapStateProps, nextProps: MapStateProps): boolean; interpolateProps( startProps: MapStateProps, endProps: MapStateProps, t: number ): any; getDuration(startProps: MapStateProps, endProps: MapStateProps): number; }