@logixjs/core
    Preparing search index...

    Variable toRuntimeDebugEventRefConst

    toRuntimeDebugEventRef: (
        event: Event,
        options?: {
            diagnosticsLevel?: DiagnosticsLevel;
            eventSeq?: number;
            onMetaProjection?: (
                projection: {
                    downgrade?: DowngradeReason;
                    stats: JsonValueProjectionStats;
                },
            ) => void;
            resolveConvergeStaticIr?: (
                staticIrDigest: string,
            ) => ConvergeStaticIrExport | undefined;
        },
    ) => RuntimeDebugEventRef
    | undefined = Internal.toRuntimeDebugEventRef

    Type Declaration

      • (
            event: Event,
            options?: {
                diagnosticsLevel?: DiagnosticsLevel;
                eventSeq?: number;
                onMetaProjection?: (
                    projection: {
                        downgrade?: DowngradeReason;
                        stats: JsonValueProjectionStats;
                    },
                ) => void;
                resolveConvergeStaticIr?: (
                    staticIrDigest: string,
                ) => ConvergeStaticIrExport | undefined;
            },
        ): RuntimeDebugEventRef
        | undefined
      • Normalizes internal Debug.Event into RuntimeDebugEventRef:

        • Allows Devtools / Runtime to consume Debug events uniformly.
        • Does not change DebugSink behavior; provides a structured view only.

        Parameters

        • event: Event
        • Optionaloptions: {
              diagnosticsLevel?: DiagnosticsLevel;
              eventSeq?: number;
              onMetaProjection?: (
                  projection: {
                      downgrade?: DowngradeReason;
                      stats: JsonValueProjectionStats;
                  },
              ) => void;
              resolveConvergeStaticIr?: (
                  staticIrDigest: string,
              ) => ConvergeStaticIrExport | undefined;
          }

        Returns RuntimeDebugEventRef | undefined