@types/sharedworker 0.0.90 → 0.0.92
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 +8 -1
- 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.92 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.92.
|
package/index.d.ts
CHANGED
|
@@ -3151,7 +3151,6 @@ interface URLSearchParams {
|
|
|
3151
3151
|
declare var URLSearchParams: {
|
|
3152
3152
|
prototype: URLSearchParams;
|
|
3153
3153
|
new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
|
|
3154
|
-
toString(): string;
|
|
3155
3154
|
};
|
|
3156
3155
|
|
|
3157
3156
|
interface WEBGL_color_buffer_float {
|
|
@@ -3209,6 +3208,13 @@ interface WEBGL_compressed_texture_etc1 {
|
|
|
3209
3208
|
readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
|
|
3210
3209
|
}
|
|
3211
3210
|
|
|
3211
|
+
interface WEBGL_compressed_texture_pvrtc {
|
|
3212
|
+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
|
|
3213
|
+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
|
|
3214
|
+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
|
|
3215
|
+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3212
3218
|
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
|
|
3213
3219
|
interface WEBGL_compressed_texture_s3tc {
|
|
3214
3220
|
readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;
|
|
@@ -4709,6 +4715,7 @@ interface WebGLRenderingContextBase {
|
|
|
4709
4715
|
getExtension(extensionName: "WEBGL_compressed_texture_astc"): WEBGL_compressed_texture_astc | null;
|
|
4710
4716
|
getExtension(extensionName: "WEBGL_compressed_texture_etc"): WEBGL_compressed_texture_etc | null;
|
|
4711
4717
|
getExtension(extensionName: "WEBGL_compressed_texture_etc1"): WEBGL_compressed_texture_etc1 | null;
|
|
4718
|
+
getExtension(extensionName: "WEBGL_compressed_texture_pvrtc"): WEBGL_compressed_texture_pvrtc | null;
|
|
4712
4719
|
getExtension(extensionName: "WEBGL_compressed_texture_s3tc"): WEBGL_compressed_texture_s3tc | null;
|
|
4713
4720
|
getExtension(extensionName: "WEBGL_compressed_texture_s3tc_srgb"): WEBGL_compressed_texture_s3tc_srgb | null;
|
|
4714
4721
|
getExtension(extensionName: "WEBGL_debug_renderer_info"): WEBGL_debug_renderer_info | null;
|