lighthouse 12.5.0-dev.20250325 → 12.5.1-dev.20250326
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.
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
export = SourceMap;
|
|
2
2
|
declare class SourceMap {
|
|
3
3
|
/**
|
|
4
|
+
* @param {string} compiledURL
|
|
5
|
+
* @param {string} sourceMappingURL
|
|
6
|
+
* @param {object} payload
|
|
4
7
|
* Implements Source Map V3 model. See https://github.com/google/closure-compiler/wiki/Source-Maps
|
|
5
8
|
* for format description.
|
|
6
9
|
*/
|
|
7
|
-
constructor(compiledURL:
|
|
8
|
-
compiledURL():
|
|
9
|
-
url():
|
|
10
|
+
constructor(compiledURL: string, sourceMappingURL: string, payload: object);
|
|
11
|
+
compiledURL(): string;
|
|
12
|
+
url(): string;
|
|
10
13
|
sourceURLs(): any[];
|
|
11
14
|
embeddedContentByURL(sourceURL: any): any;
|
|
12
15
|
hasScopeInfo(): boolean;
|
|
@@ -104,6 +104,9 @@ class SourceMap {
|
|
|
104
104
|
#sourceInfoByURL = new Map();
|
|
105
105
|
#scopesInfo = null;
|
|
106
106
|
/**
|
|
107
|
+
* @param {string} compiledURL
|
|
108
|
+
* @param {string} sourceMappingURL
|
|
109
|
+
* @param {object} payload
|
|
107
110
|
* Implements Source Map V3 model. See https://github.com/google/closure-compiler/wiki/Source-Maps
|
|
108
111
|
* for format description.
|
|
109
112
|
*/
|
package/package.json
CHANGED