@minecraft/debug-utilities
    Preparing search index...

    Interface DiagnosticsStatBeta

    Represents a single stat entry with a name and optional values to be pushed to a DiagnosticsView.

    interface DiagnosticsStat {
        name: string;
        values?: (string | number)[];
    }
    Index

    Properties

    Properties

    name: string

    The name identifier for this stat entry.

    values?: (string | number)[]

    Optional array of numeric or string values associated with this stat entry.