@types/web 0.0.89 → 0.0.91
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 +12 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.91 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.91.
|
package/index.d.ts
CHANGED
|
@@ -2210,7 +2210,7 @@ declare var AnimationPlaybackEvent: {
|
|
|
2210
2210
|
};
|
|
2211
2211
|
|
|
2212
2212
|
interface AnimationTimeline {
|
|
2213
|
-
readonly currentTime:
|
|
2213
|
+
readonly currentTime: CSSNumberish | null;
|
|
2214
2214
|
}
|
|
2215
2215
|
|
|
2216
2216
|
declare var AnimationTimeline: {
|
|
@@ -5589,7 +5589,7 @@ interface FormData {
|
|
|
5589
5589
|
|
|
5590
5590
|
declare var FormData: {
|
|
5591
5591
|
prototype: FormData;
|
|
5592
|
-
new(form?: HTMLFormElement): FormData;
|
|
5592
|
+
new(form?: HTMLFormElement, submitter?: HTMLElement | null): FormData;
|
|
5593
5593
|
};
|
|
5594
5594
|
|
|
5595
5595
|
interface FormDataEvent extends Event {
|
|
@@ -14880,6 +14880,13 @@ interface WEBGL_compressed_texture_etc1 {
|
|
|
14880
14880
|
readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
|
|
14881
14881
|
}
|
|
14882
14882
|
|
|
14883
|
+
interface WEBGL_compressed_texture_pvrtc {
|
|
14884
|
+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
|
|
14885
|
+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
|
|
14886
|
+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
|
|
14887
|
+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
|
|
14888
|
+
}
|
|
14889
|
+
|
|
14883
14890
|
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
|
|
14884
14891
|
interface WEBGL_compressed_texture_s3tc {
|
|
14885
14892
|
readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;
|
|
@@ -16392,6 +16399,7 @@ interface WebGLRenderingContextBase {
|
|
|
16392
16399
|
getExtension(extensionName: "WEBGL_compressed_texture_astc"): WEBGL_compressed_texture_astc | null;
|
|
16393
16400
|
getExtension(extensionName: "WEBGL_compressed_texture_etc"): WEBGL_compressed_texture_etc | null;
|
|
16394
16401
|
getExtension(extensionName: "WEBGL_compressed_texture_etc1"): WEBGL_compressed_texture_etc1 | null;
|
|
16402
|
+
getExtension(extensionName: "WEBGL_compressed_texture_pvrtc"): WEBGL_compressed_texture_pvrtc | null;
|
|
16395
16403
|
getExtension(extensionName: "WEBGL_compressed_texture_s3tc"): WEBGL_compressed_texture_s3tc | null;
|
|
16396
16404
|
getExtension(extensionName: "WEBGL_compressed_texture_s3tc_srgb"): WEBGL_compressed_texture_s3tc_srgb | null;
|
|
16397
16405
|
getExtension(extensionName: "WEBGL_debug_renderer_info"): WEBGL_debug_renderer_info | null;
|
|
@@ -18581,7 +18589,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
|
|
|
18581
18589
|
type ColorSpaceConversion = "default" | "none";
|
|
18582
18590
|
type CompositeOperation = "accumulate" | "add" | "replace";
|
|
18583
18591
|
type CompositeOperationOrAuto = "accumulate" | "add" | "auto" | "replace";
|
|
18584
|
-
type CredentialMediationRequirement = "optional" | "required" | "silent";
|
|
18592
|
+
type CredentialMediationRequirement = "conditional" | "optional" | "required" | "silent";
|
|
18585
18593
|
type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
|
|
18586
18594
|
type DirectionSetting = "" | "lr" | "rl";
|
|
18587
18595
|
type DisplayCaptureSurfaceType = "browser" | "monitor" | "window";
|
|
@@ -18685,7 +18693,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
|
|
|
18685
18693
|
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
|
|
18686
18694
|
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
|
|
18687
18695
|
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
|
|
18688
|
-
type ScrollBehavior = "auto" | "smooth";
|
|
18696
|
+
type ScrollBehavior = "auto" | "instant" | "smooth";
|
|
18689
18697
|
type ScrollLogicalPosition = "center" | "end" | "nearest" | "start";
|
|
18690
18698
|
type ScrollRestoration = "auto" | "manual";
|
|
18691
18699
|
type ScrollSetting = "" | "up";
|