Interface ConsoleEntry

One captured console.* entry from the previewed app. The host renders the console arguments to text host-side — the agent never receives live object handles across the boundary.

interface ConsoleEntry {
    at: number;
    level: ConsoleLevel;
    text: string;
}

Properties

Properties

at: number

Host-side timestamp (ms) at capture.

text: string