@types/serviceworker 0.0.86 → 0.0.87
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/README.md +1 -1
- package/index.d.ts +5 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
28
28
|
|
|
29
29
|
## Deploy Metadata
|
|
30
30
|
|
|
31
|
-
You can read what changed in version 0.0.
|
|
31
|
+
You can read what changed in version 0.0.87 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.87.
|
package/index.d.ts
CHANGED
|
@@ -305,10 +305,6 @@ interface ImageEncodeOptions {
|
|
|
305
305
|
type?: string;
|
|
306
306
|
}
|
|
307
307
|
|
|
308
|
-
interface ImportMeta {
|
|
309
|
-
url: string;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
308
|
interface JsonWebKey {
|
|
313
309
|
alg?: string;
|
|
314
310
|
crv?: string;
|
|
@@ -3590,6 +3586,11 @@ declare var ImageData: {
|
|
|
3590
3586
|
new(data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
3591
3587
|
};
|
|
3592
3588
|
|
|
3589
|
+
interface ImportMeta {
|
|
3590
|
+
url: string;
|
|
3591
|
+
resolve(specifier: string): string;
|
|
3592
|
+
}
|
|
3593
|
+
|
|
3593
3594
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KHR_parallel_shader_compile) */
|
|
3594
3595
|
interface KHR_parallel_shader_compile {
|
|
3595
3596
|
readonly COMPLETION_STATUS_KHR: 0x91B1;
|