import { type Runtime_CallArgument } from "https://deno.land/x/astral@0.3.5/bindings/celestial.ts";
Represents function call argument. Either remote object id objectId
, primitive value
,
unserializable primitive value or neither of (for undefined) them should be specified.
definition: { value?: any; unserializableValue?: Runtime_UnserializableValue; objectId?: Runtime_RemoteObjectId; }