devtools-protocol 0.0.1195207 → 0.0.1195796
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/json/js_protocol.json +2 -1
- package/package.json +1 -1
- package/pdl/js_protocol.pdl +1 -0
- package/types/protocol.d.ts +2 -1
package/json/js_protocol.json
CHANGED
package/package.json
CHANGED
package/pdl/js_protocol.pdl
CHANGED
package/types/protocol.d.ts
CHANGED
@@ -1541,6 +1541,7 @@ export namespace Protocol {
|
|
1541
1541
|
Arraybuffer = 'arraybuffer',
|
1542
1542
|
Node = 'node',
|
1543
1543
|
Window = 'window',
|
1544
|
+
Generator = 'generator',
|
1544
1545
|
}
|
1545
1546
|
|
1546
1547
|
/**
|
@@ -1550,7 +1551,7 @@ export namespace Protocol {
|
|
1550
1551
|
/**
|
1551
1552
|
* (DeepSerializedValueType enum)
|
1552
1553
|
*/
|
1553
|
-
type: ('undefined' | 'null' | 'string' | 'number' | 'boolean' | 'bigint' | 'regexp' | 'date' | 'symbol' | 'array' | 'object' | 'function' | 'map' | 'set' | 'weakmap' | 'weakset' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'node' | 'window');
|
1554
|
+
type: ('undefined' | 'null' | 'string' | 'number' | 'boolean' | 'bigint' | 'regexp' | 'date' | 'symbol' | 'array' | 'object' | 'function' | 'map' | 'set' | 'weakmap' | 'weakset' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'node' | 'window' | 'generator');
|
1554
1555
|
value?: any;
|
1555
1556
|
objectId?: string;
|
1556
1557
|
/**
|