Interface MotionKeyframe<K>

interface MotionKeyframe<K> {
    key?: string;
    progress: number;
    value: MotionValue<K>;
}

Type Parameters

  • K extends string

Properties

Properties

key?: string
progress: number
value: MotionValue<K>