Type alias EditOpInfo

EditOpInfo: {
    from: number;
    path: string;
    to: number;
    type: "edit";
    value: {
        attributes: Indexable;
        content: string;
    };
}

EditOpInfo represents the information of the edit operation.

Type declaration

  • from: number
  • path: string
  • to: number
  • type: "edit"
  • value: {
        attributes: Indexable;
        content: string;
    }