Type alias StyleOpInfo

StyleOpInfo: {
    from: number;
    path: string;
    to: number;
    type: "style";
    value: {
        attributes: Indexable;
    };
}

StyleOpInfo represents the information of the style operation.

Type declaration

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