Appearance
function LSM.goToBottom<T>(lsm: LSM<T>): LSM<T>;
Clears the current selection and selects the last item in the list.
import { LSM } from "@monstermann/lsm"; let lsm = LSM.create(["a", "b", "c", "d", "e"]); lsm = LSM.goToBottom(lsm); lsm.selected; // ["e"]