( steps: AnimationMetadata[], options: AnimationOptions | null = null, )
| 756 | * @deprecated 20.2 Use `animate.enter` or `animate.leave` instead. Intent to remove in v23 |
| 757 | */ |
| 758 | export function group( |
| 759 | steps: AnimationMetadata[], |
| 760 | options: AnimationOptions | null = null, |
| 761 | ): AnimationGroupMetadata { |
| 762 | return {type: AnimationMetadataType.Group, steps, options}; |
| 763 | } |
| 764 | |
| 765 | /** |
| 766 | * Defines a list of animation steps to be run sequentially, one by one. |
no outgoing calls
no test coverage detected
searching dependent graphs…