Skip to main content
Module

x/astral/bindings/celestial.ts>Runtime_RemoteObject

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

Mirror object referencing original JavaScript object.

definition: { type:
| "object"
| "function"
| "undefined"
| "string"
| "number"
| "boolean"
| "symbol"
| "bigint"
; subtype?:
| "array"
| "null"
| "node"
| "regexp"
| "date"
| "map"
| "set"
| "weakmap"
| "weakset"
| "iterator"
| "generator"
| "error"
| "proxy"
| "promise"
| "typedarray"
| "arraybuffer"
| "dataview"
| "webassemblymemory"
| "wasmvalue"
; className?: string; value?: any; unserializableValue?: Runtime_UnserializableValue; description?: string; webDriverValue?: Runtime_DeepSerializedValue; deepSerializedValue?: Runtime_DeepSerializedValue; objectId?: Runtime_RemoteObjectId; preview?: Runtime_ObjectPreview; customPreview?: Runtime_CustomPreview; }