AnimatedProps<T>: {
    [key in keyof T]: key extends NonAnimatedProps
        ? key extends "ref"
            ? TAugmentRef<T[key]>
            : T[key]
        : WithAnimatedValue<T[key]>
}

Type Parameters

  • T