Type alias TreeEditOpInfo

TreeEditOpInfo: {
    from: number;
    fromPath: number[];
    path: string;
    splitLevel?: number;
    to: number;
    toPath: number[];
    type: "tree-edit";
    value?: TreeNode[];
}

TreeEditOpInfo represents the information of the tree edit operation.

Type declaration

  • from: number
  • fromPath: number[]
  • path: string
  • Optional splitLevel?: number
  • to: number
  • toPath: number[]
  • type: "tree-edit"
  • Optional value?: TreeNode[]