( steps: AnimationMetadata[], options: AnimationOptions | null = null, )
| 798 | * @deprecated 20.2 Use `animate.enter` or `animate.leave` instead. Intent to remove in v23 |
| 799 | **/ |
| 800 | export function sequence( |
| 801 | steps: AnimationMetadata[], |
| 802 | options: AnimationOptions | null = null, |
| 803 | ): AnimationSequenceMetadata { |
| 804 | return {type: AnimationMetadataType.Sequence, steps, options}; |
| 805 | } |
| 806 | |
| 807 | /** |
| 808 | * Declares a key/value object containing CSS properties/styles that |
no outgoing calls
no test coverage detected
searching dependent graphs…