react-move
Version:
Beautiful, data-driven animations for React.
11 lines (7 loc) • 305 B
TypeScript
import * as React from "react";
export type GetInterpolator = (begValue?: any, endValue?: any, attr?: string, namespace?: string) => (t: number) => any
export interface HashMap {
[key: string]: any
}
export { default as Animate } from './Animate';
export { default as NodeGroup } from './NodeGroup';