mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
fix(animation): add correct onFinish
interface parameters (#19199)
This commit is contained in:
@ -54,7 +54,7 @@ export interface Animation {
|
|||||||
beforeRemoveClass(className: string | string[] | undefined): Animation;
|
beforeRemoveClass(className: string | string[] | undefined): Animation;
|
||||||
beforeAddClass(className: string | string[] | undefined): Animation;
|
beforeAddClass(className: string | string[] | undefined): Animation;
|
||||||
|
|
||||||
onFinish(callback: any): Animation;
|
onFinish(callback: (didComplete: boolean, animation: Animation) => void, opts?: AnimationOnFinishOptions): Animation;
|
||||||
clearOnFinish(): Animation;
|
clearOnFinish(): Animation;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user