mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
fix(react): expose correct type for CreateAnimation (#20775)
fixes #20771
This commit is contained in:
@ -30,9 +30,9 @@ export interface CreateAnimationProps {
|
|||||||
onFinish?: { callback: AnimationLifecycle; opts?: AnimationCallbackOptions; };
|
onFinish?: { callback: AnimationLifecycle; opts?: AnimationCallbackOptions; };
|
||||||
|
|
||||||
keyframes?: AnimationKeyFrames;
|
keyframes?: AnimationKeyFrames;
|
||||||
from?: PartialPropertyValue;
|
from?: PartialPropertyValue[] | PartialPropertyValue;
|
||||||
to?: PartialPropertyValue;
|
to?: PartialPropertyValue[] | PartialPropertyValue;
|
||||||
fromTo?: PropertyValue;
|
fromTo?: PropertyValue[] | PropertyValue;
|
||||||
|
|
||||||
play?: boolean;
|
play?: boolean;
|
||||||
pause?: boolean;
|
pause?: boolean;
|
||||||
|
Reference in New Issue
Block a user