Extremely Popular
Go to Latest
interface puppeteer.Runtime.PropertyPreview
import { type puppeteer } from "https://dotland.deno.dev/x/fresh@1.0.2/tests/deps.ts";
const { PropertyPreview } = puppeteer.Runtime;

Properties

name: string

Property name.

type: (
| "object"
| "function"
| "undefined"
| "string"
| "number"
| "boolean"
| "symbol"
| "accessor"
| "bigint"
)

Object type. Accessor means that the property itself is an accessor property. (PropertyPreviewType enum)

optional
value: string

User-friendly property value string.

optional
valuePreview: ObjectPreview

Nested value preview.

optional
subtype: (
| "array"
| "null"
| "node"
| "regexp"
| "date"
| "map"
| "set"
| "weakmap"
| "weakset"
| "iterator"
| "generator"
| "error"
| "proxy"
| "promise"
| "typedarray"
| "arraybuffer"
| "dataview"
| "webassemblymemory"
| "wasmvalue"
)

Object subtype hint. Specified for object type values only. (PropertyPreviewSubtype enum)