Type alias MoveOpInfo

MoveOpInfo: {
    index: number;
    path: string;
    previousIndex: number;
    type: "move";
}

MoveOpInfo represents the information of the move operation.

Type declaration

  • index: number
  • path: string
  • previousIndex: number
  • type: "move"