(el: ElementRef)
| 16 | readonly options = input<Partial<AutoAnimateOptions>>({}); |
| 17 | |
| 18 | constructor(el: ElementRef) { |
| 19 | effect(() => { |
| 20 | autoAnimate(el.nativeElement, this.options()); |
| 21 | }); |
| 22 | } |
| 23 | } |
nothing calls this directly
no test coverage detected