UNPKG

svelte-motion

Version:

Svelte animation library based on the React library framer-motion.

16 lines (15 loc) 357 B
/** based on framer-motion@4.1.17, Copyright (c) 2018 Framer B.V. */ 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;