chrome-types 0.1.296 → 0.1.297
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/_all.d.ts +21 -3
- package/index.d.ts +21 -3
- package/package.json +2 -2
package/_all.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Tue Jul 30 2024 22:29:32 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 37f74a52a4cf66063abad06fe9af586df5b748ff
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -10158,6 +10158,24 @@ declare namespace chrome {
|
|
|
10158
10158
|
): void;
|
|
10159
10159
|
}
|
|
10160
10160
|
|
|
10161
|
+
/**
|
|
10162
|
+
* Use the `chrome.devtools.performance` API to listen to recording status updates in the Performance panel in DevTools.
|
|
10163
|
+
*
|
|
10164
|
+
* @since Pending
|
|
10165
|
+
*/
|
|
10166
|
+
export namespace devtools.performance {
|
|
10167
|
+
|
|
10168
|
+
/**
|
|
10169
|
+
* Fired when the Performance panel starts recording.
|
|
10170
|
+
*/
|
|
10171
|
+
export const onProfilingStarted: events.Event<() => void>;
|
|
10172
|
+
|
|
10173
|
+
/**
|
|
10174
|
+
* Fired when the Performance panel stops recording.
|
|
10175
|
+
*/
|
|
10176
|
+
export const onProfilingStopped: events.Event<() => void>;
|
|
10177
|
+
}
|
|
10178
|
+
|
|
10161
10179
|
/**
|
|
10162
10180
|
* Use the `chrome.devtools.recorder` API to customize the Recorder panel in DevTools.
|
|
10163
10181
|
*
|
|
@@ -11655,7 +11673,7 @@ declare namespace chrome {
|
|
|
11655
11673
|
/**
|
|
11656
11674
|
* The size of the returned icon. The icon will be square with dimensions size \* size pixels. The default and largest size for the icon is 32x32 pixels. The only supported sizes are 16 and 32. It is an error to specify any other size.
|
|
11657
11675
|
*/
|
|
11658
|
-
size?:
|
|
11676
|
+
size?: number;
|
|
11659
11677
|
}
|
|
11660
11678
|
|
|
11661
11679
|
/**
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Tue Jul 30 2024 22:29:27 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 37f74a52a4cf66063abad06fe9af586df5b748ff
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -6355,6 +6355,24 @@ declare namespace chrome {
|
|
|
6355
6355
|
): void;
|
|
6356
6356
|
}
|
|
6357
6357
|
|
|
6358
|
+
/**
|
|
6359
|
+
* Use the `chrome.devtools.performance` API to listen to recording status updates in the Performance panel in DevTools.
|
|
6360
|
+
*
|
|
6361
|
+
* @since Pending
|
|
6362
|
+
*/
|
|
6363
|
+
export namespace devtools.performance {
|
|
6364
|
+
|
|
6365
|
+
/**
|
|
6366
|
+
* Fired when the Performance panel starts recording.
|
|
6367
|
+
*/
|
|
6368
|
+
export const onProfilingStarted: events.Event<() => void>;
|
|
6369
|
+
|
|
6370
|
+
/**
|
|
6371
|
+
* Fired when the Performance panel stops recording.
|
|
6372
|
+
*/
|
|
6373
|
+
export const onProfilingStopped: events.Event<() => void>;
|
|
6374
|
+
}
|
|
6375
|
+
|
|
6358
6376
|
/**
|
|
6359
6377
|
* Use the `chrome.devtools.recorder` API to customize the Recorder panel in DevTools.
|
|
6360
6378
|
*
|
|
@@ -7785,7 +7803,7 @@ declare namespace chrome {
|
|
|
7785
7803
|
/**
|
|
7786
7804
|
* The size of the returned icon. The icon will be square with dimensions size \* size pixels. The default and largest size for the icon is 32x32 pixels. The only supported sizes are 16 and 32. It is an error to specify any other size.
|
|
7787
7805
|
*/
|
|
7788
|
-
size?:
|
|
7806
|
+
size?: number;
|
|
7789
7807
|
}
|
|
7790
7808
|
|
|
7791
7809
|
/**
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"type": "module",
|
|
6
6
|
"name": "chrome-types",
|
|
7
7
|
"config": {
|
|
8
|
-
"build-hash": "
|
|
8
|
+
"build-hash": "6fbcb342813c4096"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"url": "https://github.com/GoogleChrome/chrome-types/issues"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/GoogleChrome/chrome-types",
|
|
19
|
-
"version": "0.1.
|
|
19
|
+
"version": "0.1.297"
|
|
20
20
|
}
|