export type ReorderingType = 'front' | 'forward' | 'backward' | 'back'; export interface ReorderingAction { type: ReorderingType; elements: T[]; }