@types/web 0.0.306 → 0.0.307

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 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.306 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.306.
50
+ You can read what changed in version 0.0.307 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.307.
package/index.d.ts CHANGED
@@ -978,6 +978,8 @@ interface Keyframe {
978
978
 
979
979
  interface KeyframeAnimationOptions extends KeyframeEffectOptions {
980
980
  id?: string;
981
+ rangeEnd?: TimelineRangeOffset | CSSNumericValue | CSSKeywordValue | string;
982
+ rangeStart?: TimelineRangeOffset | CSSNumericValue | CSSKeywordValue | string;
981
983
  timeline?: AnimationTimeline | null;
982
984
  }
983
985
 
@@ -2377,6 +2379,11 @@ interface TextEncoderEncodeIntoResult {
2377
2379
  written: number;
2378
2380
  }
2379
2381
 
2382
+ interface TimelineRangeOffset {
2383
+ offset?: CSSNumericValue;
2384
+ rangeName?: string | null;
2385
+ }
2386
+
2380
2387
  interface ToggleEventInit extends EventInit {
2381
2388
  newState?: string;
2382
2389
  oldState?: string;
@@ -5888,6 +5895,7 @@ interface CSSRule {
5888
5895
  readonly MEDIA_RULE: 4;
5889
5896
  readonly FONT_FACE_RULE: 5;
5890
5897
  readonly PAGE_RULE: 6;
5898
+ readonly MARGIN_RULE: 9;
5891
5899
  readonly NAMESPACE_RULE: 10;
5892
5900
  readonly KEYFRAMES_RULE: 7;
5893
5901
  readonly KEYFRAME_RULE: 8;
@@ -5905,6 +5913,7 @@ declare var CSSRule: {
5905
5913
  readonly MEDIA_RULE: 4;
5906
5914
  readonly FONT_FACE_RULE: 5;
5907
5915
  readonly PAGE_RULE: 6;
5916
+ readonly MARGIN_RULE: 9;
5908
5917
  readonly NAMESPACE_RULE: 10;
5909
5918
  readonly KEYFRAMES_RULE: 7;
5910
5919
  readonly KEYFRAME_RULE: 8;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.306",
3
+ "version": "0.0.307",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -975,6 +975,8 @@ interface Keyframe {
975
975
 
976
976
  interface KeyframeAnimationOptions extends KeyframeEffectOptions {
977
977
  id?: string;
978
+ rangeEnd?: TimelineRangeOffset | CSSNumericValue | CSSKeywordValue | string;
979
+ rangeStart?: TimelineRangeOffset | CSSNumericValue | CSSKeywordValue | string;
978
980
  timeline?: AnimationTimeline | null;
979
981
  }
980
982
 
@@ -2374,6 +2376,11 @@ interface TextEncoderEncodeIntoResult {
2374
2376
  written: number;
2375
2377
  }
2376
2378
 
2379
+ interface TimelineRangeOffset {
2380
+ offset?: CSSNumericValue;
2381
+ rangeName?: string | null;
2382
+ }
2383
+
2377
2384
  interface ToggleEventInit extends EventInit {
2378
2385
  newState?: string;
2379
2386
  oldState?: string;
@@ -5878,6 +5885,7 @@ interface CSSRule {
5878
5885
  readonly MEDIA_RULE: 4;
5879
5886
  readonly FONT_FACE_RULE: 5;
5880
5887
  readonly PAGE_RULE: 6;
5888
+ readonly MARGIN_RULE: 9;
5881
5889
  readonly NAMESPACE_RULE: 10;
5882
5890
  readonly KEYFRAMES_RULE: 7;
5883
5891
  readonly KEYFRAME_RULE: 8;
@@ -5895,6 +5903,7 @@ declare var CSSRule: {
5895
5903
  readonly MEDIA_RULE: 4;
5896
5904
  readonly FONT_FACE_RULE: 5;
5897
5905
  readonly PAGE_RULE: 6;
5906
+ readonly MARGIN_RULE: 9;
5898
5907
  readonly NAMESPACE_RULE: 10;
5899
5908
  readonly KEYFRAMES_RULE: 7;
5900
5909
  readonly KEYFRAME_RULE: 8;
package/ts5.6/index.d.ts CHANGED
@@ -975,6 +975,8 @@ interface Keyframe {
975
975
 
976
976
  interface KeyframeAnimationOptions extends KeyframeEffectOptions {
977
977
  id?: string;
978
+ rangeEnd?: TimelineRangeOffset | CSSNumericValue | CSSKeywordValue | string;
979
+ rangeStart?: TimelineRangeOffset | CSSNumericValue | CSSKeywordValue | string;
978
980
  timeline?: AnimationTimeline | null;
979
981
  }
980
982
 
@@ -2374,6 +2376,11 @@ interface TextEncoderEncodeIntoResult {
2374
2376
  written: number;
2375
2377
  }
2376
2378
 
2379
+ interface TimelineRangeOffset {
2380
+ offset?: CSSNumericValue;
2381
+ rangeName?: string | null;
2382
+ }
2383
+
2377
2384
  interface ToggleEventInit extends EventInit {
2378
2385
  newState?: string;
2379
2386
  oldState?: string;
@@ -5885,6 +5892,7 @@ interface CSSRule {
5885
5892
  readonly MEDIA_RULE: 4;
5886
5893
  readonly FONT_FACE_RULE: 5;
5887
5894
  readonly PAGE_RULE: 6;
5895
+ readonly MARGIN_RULE: 9;
5888
5896
  readonly NAMESPACE_RULE: 10;
5889
5897
  readonly KEYFRAMES_RULE: 7;
5890
5898
  readonly KEYFRAME_RULE: 8;
@@ -5902,6 +5910,7 @@ declare var CSSRule: {
5902
5910
  readonly MEDIA_RULE: 4;
5903
5911
  readonly FONT_FACE_RULE: 5;
5904
5912
  readonly PAGE_RULE: 6;
5913
+ readonly MARGIN_RULE: 9;
5905
5914
  readonly NAMESPACE_RULE: 10;
5906
5915
  readonly KEYFRAMES_RULE: 7;
5907
5916
  readonly KEYFRAME_RULE: 8;
package/ts5.9/index.d.ts CHANGED
@@ -975,6 +975,8 @@ interface Keyframe {
975
975
 
976
976
  interface KeyframeAnimationOptions extends KeyframeEffectOptions {
977
977
  id?: string;
978
+ rangeEnd?: TimelineRangeOffset | CSSNumericValue | CSSKeywordValue | string;
979
+ rangeStart?: TimelineRangeOffset | CSSNumericValue | CSSKeywordValue | string;
978
980
  timeline?: AnimationTimeline | null;
979
981
  }
980
982
 
@@ -2374,6 +2376,11 @@ interface TextEncoderEncodeIntoResult {
2374
2376
  written: number;
2375
2377
  }
2376
2378
 
2379
+ interface TimelineRangeOffset {
2380
+ offset?: CSSNumericValue;
2381
+ rangeName?: string | null;
2382
+ }
2383
+
2377
2384
  interface ToggleEventInit extends EventInit {
2378
2385
  newState?: string;
2379
2386
  oldState?: string;
@@ -5885,6 +5892,7 @@ interface CSSRule {
5885
5892
  readonly MEDIA_RULE: 4;
5886
5893
  readonly FONT_FACE_RULE: 5;
5887
5894
  readonly PAGE_RULE: 6;
5895
+ readonly MARGIN_RULE: 9;
5888
5896
  readonly NAMESPACE_RULE: 10;
5889
5897
  readonly KEYFRAMES_RULE: 7;
5890
5898
  readonly KEYFRAME_RULE: 8;
@@ -5902,6 +5910,7 @@ declare var CSSRule: {
5902
5910
  readonly MEDIA_RULE: 4;
5903
5911
  readonly FONT_FACE_RULE: 5;
5904
5912
  readonly PAGE_RULE: 6;
5913
+ readonly MARGIN_RULE: 9;
5905
5914
  readonly NAMESPACE_RULE: 10;
5906
5915
  readonly KEYFRAMES_RULE: 7;
5907
5916
  readonly KEYFRAME_RULE: 8;