diff --git a/components/lib/animate/Animate.d.ts b/components/lib/animate/Animate.d.ts index fcea44202..e308755d0 100644 --- a/components/lib/animate/Animate.d.ts +++ b/components/lib/animate/Animate.d.ts @@ -46,6 +46,17 @@ export interface AnimateDirectivePassThroughOptions { hooks?: DirectiveHooks; } +/** + * Defines modifiers of Animate. + */ +export interface AnimateDirectiveModifiers { + /** + * Whether the animation will be repeated + * @defaultValue true + */ + once?: boolean | undefined; +} + /** * Binding of Animate directive. */ @@ -54,6 +65,11 @@ export interface AnimateDirectiveBinding extends Omit