devtools-protocol 0.0.1094867 → 0.0.1096014
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.
@@ -2496,7 +2496,7 @@
|
|
2496
2496
|
},
|
2497
2497
|
{
|
2498
2498
|
"name": "delta",
|
2499
|
-
"description": "If true, retrieve delta since last call.",
|
2499
|
+
"description": "If true, retrieve delta since last delta call.",
|
2500
2500
|
"optional": true,
|
2501
2501
|
"type": "boolean"
|
2502
2502
|
}
|
@@ -2524,7 +2524,7 @@
|
|
2524
2524
|
},
|
2525
2525
|
{
|
2526
2526
|
"name": "delta",
|
2527
|
-
"description": "If true, retrieve delta since last call.",
|
2527
|
+
"description": "If true, retrieve delta since last delta call.",
|
2528
2528
|
"optional": true,
|
2529
2529
|
"type": "boolean"
|
2530
2530
|
}
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1273,7 +1273,7 @@ domain Browser
|
|
1273
1273
|
# substring in their name are extracted. An empty or absent query returns
|
1274
1274
|
# all histograms.
|
1275
1275
|
optional string query
|
1276
|
-
# If true, retrieve delta since last call.
|
1276
|
+
# If true, retrieve delta since last delta call.
|
1277
1277
|
optional boolean delta
|
1278
1278
|
|
1279
1279
|
returns
|
@@ -1285,7 +1285,7 @@ domain Browser
|
|
1285
1285
|
parameters
|
1286
1286
|
# Requested histogram name.
|
1287
1287
|
string name
|
1288
|
-
# If true, retrieve delta since last call.
|
1288
|
+
# If true, retrieve delta since last delta call.
|
1289
1289
|
optional boolean delta
|
1290
1290
|
returns
|
1291
1291
|
# Histogram.
|
package/types/protocol.d.ts
CHANGED
@@ -3916,7 +3916,7 @@ export namespace Protocol {
|
|
3916
3916
|
*/
|
3917
3917
|
query?: string;
|
3918
3918
|
/**
|
3919
|
-
* If true, retrieve delta since last call.
|
3919
|
+
* If true, retrieve delta since last delta call.
|
3920
3920
|
*/
|
3921
3921
|
delta?: boolean;
|
3922
3922
|
}
|
@@ -3934,7 +3934,7 @@ export namespace Protocol {
|
|
3934
3934
|
*/
|
3935
3935
|
name: string;
|
3936
3936
|
/**
|
3937
|
-
* If true, retrieve delta since last call.
|
3937
|
+
* If true, retrieve delta since last delta call.
|
3938
3938
|
*/
|
3939
3939
|
delta?: boolean;
|
3940
3940
|
}
|