(c) 2024, Micro:bit Educational Foundation and contributors

SPDX-License-Identifier: MIT

interface LoggingEvent {
    detail?: any;
    message?: string;
    type: string;
    value?: number;
}

Properties

detail?: any
message?: string
type: string
value?: number