import { type Protocol } from "https://deno.land/x/sinco@v4.1.0/deps.ts";
const { PropertyDescriptor } = Protocol.Runtime;
Object property descriptor.
Properties
optional
value: RemoteObjectThe value associated with the property.
True if the value associated with the property may be changed (data descriptors only).
optional
get: RemoteObjectA function which serves as a getter for the property, or undefined
if there is no getter
(accessor descriptors only).
optional
set: RemoteObjectA function which serves as a setter for the property, or undefined
if there is no setter
(accessor descriptors only).
True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
True if this property shows up during enumeration of the properties on the corresponding object.
optional
symbol: RemoteObjectProperty symbol object, if the property is of the symbol
type.