Type Alias ParsedNavValue

ParsedNavValue: {
    isGroup: boolean;
    type: "2d";
    xCord: number;
    yCord: number;
} | {
    isGroup: boolean;
    type: "1d";
}

Data parsed from the nav attributes.