(idx: number)
| 767 | } |
| 768 | |
| 769 | const mount = (idx: number): void => { |
| 770 | if (idx < 0 || idx >= wrappers.length) return |
| 771 | this.mountListSlide(idx, wrappers[idx], scale, displayWidth, displayHeight) |
| 772 | } |
| 773 | const unmount = (idx: number): void => { |
| 774 | if (idx < 0 || idx >= wrappers.length) return |
| 775 | this.unmountListSlide(idx, wrappers[idx], displayHeight) |
nothing calls this directly
no test coverage detected