| 863 | * A custom plugin that determines what the effects to run |
| 864 | */ |
| 865 | export interface AutoAnimationPlugin { |
| 866 | <T extends "add" | "remove" | "remain">( |
| 867 | el: Element, |
| 868 | action: T, |
| 869 | newCoordinates?: T extends "add" | "remain" | "remove" |
| 870 | ? Coordinates |
| 871 | : undefined, |
| 872 | oldCoordinates?: T extends "remain" ? Coordinates : undefined, |
| 873 | ): KeyframeEffect | [KeyframeEffect, AutoAnimationPluginOptions] |
| 874 | } |
| 875 | |
| 876 | /** |
| 877 | * A function that automatically adds animation effects to itself and its |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…