@types/chrome 0.1.6 → 0.1.7
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.
- chrome/README.md +1 -1
- chrome/index.d.ts +4 -8
- chrome/package.json +2 -2
chrome/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for chrome (https://developer.chrome.com/
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Mon, 08 Sep 2025 16:37:53 GMT
|
12
12
|
* Dependencies: [@types/filesystem](https://npmjs.com/package/@types/filesystem), [@types/har-format](https://npmjs.com/package/@types/har-format)
|
13
13
|
|
14
14
|
# Credits
|
chrome/index.d.ts
CHANGED
@@ -2817,14 +2817,10 @@ declare namespace chrome {
|
|
2817
2817
|
* @since Chrome 129
|
2818
2818
|
*/
|
2819
2819
|
export namespace devtools.performance {
|
2820
|
-
|
2821
|
-
|
2822
|
-
|
2823
|
-
|
2824
|
-
/** Fired when the Performance panel begins recording performance data. */
|
2825
|
-
export var onProfilingStarted: ProfilingStartedEvent;
|
2826
|
-
/** Fired when the Performance panel stops recording performance data. */
|
2827
|
-
export var onProfilingStopped: ProfilingStoppedEvent;
|
2820
|
+
/** Fired when the Performance panel starts recording. */
|
2821
|
+
export const onProfilingStarted: events.Event<() => void>;
|
2822
|
+
/** Fired when the Performance panel stops recording. */
|
2823
|
+
export const onProfilingStopped: events.Event<() => void>;
|
2828
2824
|
}
|
2829
2825
|
|
2830
2826
|
////////////////////
|
chrome/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/chrome",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.7",
|
4
4
|
"description": "TypeScript definitions for chrome",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome",
|
6
6
|
"license": "MIT",
|
@@ -94,6 +94,6 @@
|
|
94
94
|
"@types/har-format": "*"
|
95
95
|
},
|
96
96
|
"peerDependencies": {},
|
97
|
-
"typesPublisherContentHash": "
|
97
|
+
"typesPublisherContentHash": "b5537887aa39e34c2ca42e2ec6ebfdbbd43cd16e40272c028c6ed219c1a98d4c",
|
98
98
|
"typeScriptVersion": "5.2"
|
99
99
|
}
|