@yorkie-js/sdk
    Preparing search index...

    Type Alias TreeChange

    TreeChange:
        | {
            actor: ActorID;
            from: number;
            fromPath: number[];
            splitLevel?: number;
            to: number;
            toPath: number[];
            type: Content;
            value?: TreeNode[];
        }
        | {
            actor: ActorID;
            from: number;
            fromPath: number[];
            splitLevel?: number;
            to: number;
            toPath: number[];
            type: Style;
            value: { [key: string]: string };
        }
        | {
            actor: ActorID;
            from: number;
            fromPath: number[];
            splitLevel?: number;
            to: number;
            toPath: number[];
            type: RemoveStyle;
            value?: string[];
        }

    TreeChange represents the change in the tree.