UNPKG

framer-motion

Version:

A simple and powerful React animation library

12 lines (11 loc) 287 B
import { ResolvedValueTarget } from "../../types"; /** * Check if a value is animatable. Examples: * * ✅: 100, "100px", "#fff" * ❌: "block", "url(2.jpg)" * @param value * * @internal */ export declare const isAnimatable: (key: string, value: ResolvedValueTarget) => boolean;