@kcirtaptrick/framer-motion
Version:
A simple and powerful React animation library
11 lines (10 loc) • 368 B
TypeScript
import { MotionValue } from "..";
import { CustomValueType } from "../../types";
/**
* If the provided value is a MotionValue, this returns the actual value, otherwise just the value itself
*
* TODO: Remove and move to library
*
* @internal
*/
export declare function resolveMotionValue(value?: string | number | CustomValueType | MotionValue): string | number;