| 835 | } |
| 836 | |
| 837 | export interface AutoAnimateOptions { |
| 838 | /** |
| 839 | * The time it takes to run a single sequence of animations in milliseconds. |
| 840 | */ |
| 841 | duration: number |
| 842 | /** |
| 843 | * The type of easing to use. |
| 844 | * Default: ease-in-out |
| 845 | */ |
| 846 | easing: "linear" | "ease-in" | "ease-out" | "ease-in-out" | ({} & string) |
| 847 | /** |
| 848 | * Ignore a user’s "reduce motion" setting and enable animations. It is not |
| 849 | * recommended to use this. |
| 850 | */ |
| 851 | disrespectUserMotionPreference?: boolean |
| 852 | } |
| 853 | |
| 854 | /** |
| 855 | * A custom plugin config object |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…