import { Selection } from '../../types';

export const getSelectionStart = (selection: Selection) => selection[0][0];
export const getSelectionEnd = (selection: Selection) => selection[0][1];
export const getSelectedTracks = (selection: Selection) => selection[1];
export const getSelectionLength = (selection: Selection) => getSelectionEnd(selection) - getSelectionStart(selection)
