export interface IMoveItemCommandArgs<TItem> {
    item: TItem;
    newIndex: number;
    needUpdate?: boolean;
}
