@types/web 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 +3 -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.92 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.92.
|
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: {
|
|
@@ -3000,7 +3000,6 @@ interface CSSStyleDeclaration {
|
|
|
3000
3000
|
containerName: string;
|
|
3001
3001
|
containerType: string;
|
|
3002
3002
|
content: string;
|
|
3003
|
-
contentVisibility: string;
|
|
3004
3003
|
counterIncrement: string;
|
|
3005
3004
|
counterReset: string;
|
|
3006
3005
|
counterSet: string;
|
|
@@ -5589,7 +5588,7 @@ interface FormData {
|
|
|
5589
5588
|
|
|
5590
5589
|
declare var FormData: {
|
|
5591
5590
|
prototype: FormData;
|
|
5592
|
-
new(form?: HTMLFormElement): FormData;
|
|
5591
|
+
new(form?: HTMLFormElement, submitter?: HTMLElement | null): FormData;
|
|
5593
5592
|
};
|
|
5594
5593
|
|
|
5595
5594
|
interface FormDataEvent extends Event {
|
|
@@ -18589,7 +18588,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
|
|
|
18589
18588
|
type ColorSpaceConversion = "default" | "none";
|
|
18590
18589
|
type CompositeOperation = "accumulate" | "add" | "replace";
|
|
18591
18590
|
type CompositeOperationOrAuto = "accumulate" | "add" | "auto" | "replace";
|
|
18592
|
-
type CredentialMediationRequirement = "optional" | "required" | "silent";
|
|
18591
|
+
type CredentialMediationRequirement = "conditional" | "optional" | "required" | "silent";
|
|
18593
18592
|
type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
|
|
18594
18593
|
type DirectionSetting = "" | "lr" | "rl";
|
|
18595
18594
|
type DisplayCaptureSurfaceType = "browser" | "monitor" | "window";
|