Skip to main content
Module

x/astral/bindings/celestial.ts>Runtime_consoleAPICalled

A high-level puppeteer/playwright-like library for Deno
Go to Latest
interface Runtime_consoleAPICalled
import { type Runtime_consoleAPICalled } from "https://deno.land/x/astral@0.3.1/bindings/celestial.ts";

Properties

type:
| "log"
| "debug"
| "info"
| "error"
| "warning"
| "dir"
| "dirxml"
| "table"
| "trace"
| "clear"
| "startGroup"
| "startGroupCollapsed"
| "endGroup"
| "assert"
| "profile"
| "profileEnd"
| "count"
| "timeEnd"

Type of the call.

Call arguments.

executionContextId: Runtime_ExecutionContextId

Identifier of the context where the call was made.

Call timestamp.

optional
stackTrace: Runtime_StackTrace

Stack trace captured when the call was made. The async stack chain is automatically reported for the following call types: assert, error, trace, warning. For other types the async call chain can be retrieved using Debugger.getStackTrace and stackTrace.parentId field.

optional
context: string