@types/web 0.0.90 → 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 +3 -3
- 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 {
|
|
@@ -18589,7 +18589,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
|
|
|
18589
18589
|
type ColorSpaceConversion = "default" | "none";
|
|
18590
18590
|
type CompositeOperation = "accumulate" | "add" | "replace";
|
|
18591
18591
|
type CompositeOperationOrAuto = "accumulate" | "add" | "auto" | "replace";
|
|
18592
|
-
type CredentialMediationRequirement = "optional" | "required" | "silent";
|
|
18592
|
+
type CredentialMediationRequirement = "conditional" | "optional" | "required" | "silent";
|
|
18593
18593
|
type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
|
|
18594
18594
|
type DirectionSetting = "" | "lr" | "rl";
|
|
18595
18595
|
type DisplayCaptureSurfaceType = "browser" | "monitor" | "window";
|