(
name: string,
styles: AnimationStyleMetadata,
options?: {params: {[name: string]: any}},
)
| 883 | * @deprecated 20.2 Use `animate.enter` or `animate.leave` instead. Intent to remove in v23 |
| 884 | **/ |
| 885 | export function state( |
| 886 | name: string, |
| 887 | styles: AnimationStyleMetadata, |
| 888 | options?: {params: {[name: string]: any}}, |
| 889 | ): AnimationStateMetadata { |
| 890 | return {type: AnimationMetadataType.State, name, styles, options}; |
| 891 | } |
| 892 | |
| 893 | /** |
| 894 | * Defines a set of animation styles, associating each style with an optional `offset` value. |
no outgoing calls
no test coverage detected
searching dependent graphs…