import { type Protocol } from "https://deno.land/x/sinco@v4.1.0/deps.ts";
const { PropertyPreview } = Protocol.Runtime;
Properties
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
valuePreview: ObjectPreviewNested 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)