Skip to content

probe-web / @probe-web/client / index / DebugOutput

Type Alias: DebugOutput

ts
type DebugOutput = 
  | {
  source: "rtt";
  channel: number;
  text: string;
}
  | {
  source: "semihosting";
  text: string;
};

Defined in: debugger.ts:217

Target output seen while debugging (output event).