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

    Type Alias TreeNodeInfo

    TreeNodeInfo represents the crdt tree node information in devtools.

    type TreeNodeInfo = {
        attributes?: object;
        children: TreeNodeInfo[];
        depth: number;
        id: string;
        index?: number;
        insNext?: string;
        insPrev?: string;
        isRemoved: boolean;
        parent?: string;
        path?: number[];
        pos?: CRDTTreePosStruct;
        removedAt?: string;
        size: number;
        type: string;
        value?: string;
    }
    Index

    Properties

    attributes?: object
    children: TreeNodeInfo[]
    depth: number
    id: string
    index?: number
    insNext?: string
    insPrev?: string
    isRemoved: boolean
    parent?: string
    path?: number[]
    pos?: CRDTTreePosStruct
    removedAt?: string
    size: number
    type: string
    value?: string