@mermaid-lint/core
    Preparing search index...

    Interface ValidationError

    A syntax error from diagram validation, with an optional location relative to the diagram body.

    interface ValidationError {
        col?: number;
        line?: number;
        message: string;
    }
    Index

    Properties

    Properties

    col?: number

    1-indexed column within the diagram body, when known.

    line?: number

    1-indexed line within the diagram body, when known.

    message: string

    Human-readable error message.