Type Alias TreeNodeShallowValue

TreeNodeShallowValue: {
    children: TreeNodeShallowValue[];
    fractionalIndex: string;
    id: TreeID;
    index: number;
    meta: ContainerID;
    parent: TreeID | undefined;
}

Type declaration