cyoa-core
    Preparing search index...

    Type Alias ValidationIssue

    ValidationIssue:
        | { startNodeId: string; type: "missing-start-node" }
        | {
            choiceText: string;
            nodeId: string;
            target: string;
            type: "dangling-target";
        }
        | { nodeId: string; type: "unreachable-node" }
        | {
            choiceText: string;
            message: string;
            nodeId: string;
            type: "invalid-condition";
        }
        | {
            choiceText?: string;
            message: string;
            nodeId: string;
            type: "invalid-effect";
        }