(
tokens: '*' | {[key: string]: string | number} | Array<'*' | {[key: string]: string | number}>,
)
| 846 | * @deprecated 20.2 Use `animate.enter` or `animate.leave` instead. Intent to remove in v23 |
| 847 | **/ |
| 848 | export function style( |
| 849 | tokens: '*' | {[key: string]: string | number} | Array<'*' | {[key: string]: string | number}>, |
| 850 | ): AnimationStyleMetadata { |
| 851 | return {type: AnimationMetadataType.Style, styles: tokens, offset: null}; |
| 852 | } |
| 853 | |
| 854 | /** |
| 855 | * Declares an animation state within a trigger attached to an element. |
no outgoing calls
no test coverage detected
searching dependent graphs…