( timings: string | number, styles: AnimationStyleMetadata | AnimationKeyframesSequenceMetadata | null = null, )
| 714 | * @deprecated 20.2 Use `animate.enter` or `animate.leave` instead. Intent to remove in v23 |
| 715 | */ |
| 716 | export function animate( |
| 717 | timings: string | number, |
| 718 | styles: AnimationStyleMetadata | AnimationKeyframesSequenceMetadata | null = null, |
| 719 | ): AnimationAnimateMetadata { |
| 720 | return {type: AnimationMetadataType.Animate, styles, timings}; |
| 721 | } |
| 722 | |
| 723 | /** |
| 724 | * @description Defines a list of animation steps to be run in parallel. |
no outgoing calls
no test coverage detected
searching dependent graphs…