Loxer - v3.0.0
    Preparing search index...

    Type Alias LoxerOutputEvent

    LoxerOutputEvent:
        | { environment: "dev"
        | "prod"; kind: "log"; lox: OutputLox }
        | {
            environment: "dev" | "prod";
            kind: "error";
            lox: ErrorLox;
            history: (OutputLox | ErrorLox)[];
        }

    One emitted Loxer event. kind narrows the lox and the error-only history together.