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

    Interface SemanticWarning

    A non-fatal semantic finding (e.g. a duplicate node id) raised by checkSemantics, distinct from a syntax error.

    interface SemanticWarning {
        line?: number;
        message: string;
        rule: string;
    }
    Index

    Properties

    Properties

    line?: number

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

    message: string

    Human-readable description of the finding.

    rule: string

    Stable rule name, e.g. 'duplicate-ids'.