Type alias TreeStyleOpInfo

TreeStyleOpInfo: {
    from: number;
    fromPath: number[];
    path: string;
    to: number;
    toPath: number[];
    type: "tree-style";
    value: {
        attributes?: Indexable;
        attributesToRemove?: string[];
    };
}

TreeStyleOpInfo represents the information of the tree style operation.

Type declaration

  • from: number
  • fromPath: number[]
  • path: string
  • to: number
  • toPath: number[]
  • type: "tree-style"
  • value: {
        attributes?: Indexable;
        attributesToRemove?: string[];
    }
    • Optional attributes?: Indexable
    • Optional attributesToRemove?: string[]