mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Refactor #4610
This commit is contained in:
parent
c675c8f4ea
commit
eea3054b74
2 changed files with 20 additions and 2 deletions
16
components/lib/animate/Animate.d.ts
vendored
16
components/lib/animate/Animate.d.ts
vendored
|
@ -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<DirectiveBinding, 'modifie
|
|||
* Value of the Animate.
|
||||
*/
|
||||
value?: AnimateOptions | undefined;
|
||||
/**
|
||||
* Modifiers of the tooltip.
|
||||
* @type {AnimateDirectiveModifiers}
|
||||
*/
|
||||
modifiers?: AnimateDirectiveModifiers | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue