diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 5acd208bd..1e80822fa 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -2701,6 +2701,11 @@ interface ShareData { url?: string; } +interface SharedWorkerOptions extends WorkerOptions { + extendedLifetime?: boolean; + sameSiteCookies?: SameSiteCookiesType; +} + interface ShowPopoverOptions { source?: HTMLElement; } @@ -7997,7 +8002,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ left: string; /** - * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together. + * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing) */ @@ -9762,7 +9767,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ wordBreak: string; /** - * The word-spacing CSS property sets the length of space between words and between tags. + * The word-spacing CSS property sets the spacing between words and between tags. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing) */ @@ -35470,7 +35475,7 @@ interface SharedWorker extends EventTarget, AbstractWorker { declare var SharedWorker: { prototype: SharedWorker; - new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker; + new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker; }; interface Slottable { @@ -44619,6 +44624,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required"; type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box"; type ResizeQuality = "high" | "low" | "medium" | "pixelated"; type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect"; +type SameSiteCookiesType = "all" | "none"; type SanitizerPresets = "default"; type ScrollAxis = "block" | "inline" | "x" | "y"; type ScrollBehavior = "auto" | "instant" | "smooth"; diff --git a/baselines/ts5.5/dom.generated.d.ts b/baselines/ts5.5/dom.generated.d.ts index b6e17077b..1200ef0e7 100644 --- a/baselines/ts5.5/dom.generated.d.ts +++ b/baselines/ts5.5/dom.generated.d.ts @@ -2698,6 +2698,11 @@ interface ShareData { url?: string; } +interface SharedWorkerOptions extends WorkerOptions { + extendedLifetime?: boolean; + sameSiteCookies?: SameSiteCookiesType; +} + interface ShowPopoverOptions { source?: HTMLElement; } @@ -7987,7 +7992,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ left: string; /** - * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together. + * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing) */ @@ -9752,7 +9757,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ wordBreak: string; /** - * The word-spacing CSS property sets the length of space between words and between tags. + * The word-spacing CSS property sets the spacing between words and between tags. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing) */ @@ -35445,7 +35450,7 @@ interface SharedWorker extends EventTarget, AbstractWorker { declare var SharedWorker: { prototype: SharedWorker; - new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker; + new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker; }; interface Slottable { @@ -44593,6 +44598,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required"; type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box"; type ResizeQuality = "high" | "low" | "medium" | "pixelated"; type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect"; +type SameSiteCookiesType = "all" | "none"; type SanitizerPresets = "default"; type ScrollAxis = "block" | "inline" | "x" | "y"; type ScrollBehavior = "auto" | "instant" | "smooth"; diff --git a/baselines/ts5.6/dom.generated.d.ts b/baselines/ts5.6/dom.generated.d.ts index 7b212470f..1136f9107 100644 --- a/baselines/ts5.6/dom.generated.d.ts +++ b/baselines/ts5.6/dom.generated.d.ts @@ -2698,6 +2698,11 @@ interface ShareData { url?: string; } +interface SharedWorkerOptions extends WorkerOptions { + extendedLifetime?: boolean; + sameSiteCookies?: SameSiteCookiesType; +} + interface ShowPopoverOptions { source?: HTMLElement; } @@ -7994,7 +7999,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ left: string; /** - * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together. + * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing) */ @@ -9759,7 +9764,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ wordBreak: string; /** - * The word-spacing CSS property sets the length of space between words and between tags. + * The word-spacing CSS property sets the spacing between words and between tags. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing) */ @@ -35467,7 +35472,7 @@ interface SharedWorker extends EventTarget, AbstractWorker { declare var SharedWorker: { prototype: SharedWorker; - new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker; + new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker; }; interface Slottable { @@ -44616,6 +44621,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required"; type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box"; type ResizeQuality = "high" | "low" | "medium" | "pixelated"; type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect"; +type SameSiteCookiesType = "all" | "none"; type SanitizerPresets = "default"; type ScrollAxis = "block" | "inline" | "x" | "y"; type ScrollBehavior = "auto" | "instant" | "smooth"; diff --git a/baselines/ts5.9/dom.generated.d.ts b/baselines/ts5.9/dom.generated.d.ts index b7c94593a..f4e7f17ce 100644 --- a/baselines/ts5.9/dom.generated.d.ts +++ b/baselines/ts5.9/dom.generated.d.ts @@ -2698,6 +2698,11 @@ interface ShareData { url?: string; } +interface SharedWorkerOptions extends WorkerOptions { + extendedLifetime?: boolean; + sameSiteCookies?: SameSiteCookiesType; +} + interface ShowPopoverOptions { source?: HTMLElement; } @@ -7994,7 +7999,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ left: string; /** - * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together. + * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing) */ @@ -9759,7 +9764,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ wordBreak: string; /** - * The word-spacing CSS property sets the length of space between words and between tags. + * The word-spacing CSS property sets the spacing between words and between tags. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing) */ @@ -35467,7 +35472,7 @@ interface SharedWorker extends EventTarget, AbstractWorker { declare var SharedWorker: { prototype: SharedWorker; - new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker; + new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker; }; interface Slottable { @@ -44616,6 +44621,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required"; type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box"; type ResizeQuality = "high" | "low" | "medium" | "pixelated"; type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect"; +type SameSiteCookiesType = "all" | "none"; type SanitizerPresets = "default"; type ScrollAxis = "block" | "inline" | "x" | "y"; type ScrollBehavior = "auto" | "instant" | "smooth"; diff --git a/inputfiles/mdn.json b/inputfiles/mdn.json index 0315d7009..6b08dd7ff 100644 --- a/inputfiles/mdn.json +++ b/inputfiles/mdn.json @@ -2164,6 +2164,26 @@ "pageType": "web-api-instance-method", "summary": "The restrictTo() method of the BrowserCaptureMediaStreamTrack interface restricts a self-capture stream to a specific DOM element (and its descendants)." }, + { + "mdn_url": "/en-US/docs/Web/API/BufferedChangeEvent", + "pageType": "web-api-interface", + "summary": "The BufferedChangeEvent interface of the Media Source Extensions API represents the event object for the bufferedchange event fired on a ManagedSourceBuffer. This event is fired whenever the buffered ranges of the ManagedSourceBuffer change, for example as a result of appendBuffer(), remove(), or endOfStream() calls, or when the user agent runs the memory cleanup algorithm." + }, + { + "mdn_url": "/en-US/docs/Web/API/BufferedChangeEvent/addedRanges", + "pageType": "web-api-instance-property", + "summary": "The addedRanges read-only property of the BufferedChangeEvent interface returns a TimeRanges object representing the time ranges that were added to the associated ManagedSourceBuffer. These are the ranges added between the last updatestart and updateend events, during the most recent run of the coded frame processing algorithm." + }, + { + "mdn_url": "/en-US/docs/Web/API/BufferedChangeEvent/BufferedChangeEvent", + "pageType": "web-api-constructor", + "summary": "The BufferedChangeEvent() constructor of the BufferedChangeEvent interface creates a new BufferedChangeEvent object instance." + }, + { + "mdn_url": "/en-US/docs/Web/API/BufferedChangeEvent/removedRanges", + "pageType": "web-api-instance-property", + "summary": "The removedRanges read-only property of the BufferedChangeEvent interface returns a TimeRanges object representing the time ranges that were removed from the associated ManagedSourceBuffer. These are the ranges removed between the last updatestart and updateend events, during the most recent run of the coded frame removal or coded frame eviction algorithm, or as a consequence of the user agent running the memory cleanup algorithm." + }, { "mdn_url": "/en-US/docs/Web/API/ByteLengthQueuingStrategy", "pageType": "web-api-interface", @@ -17649,6 +17669,41 @@ "pageType": "web-api-instance-property", "summary": "The z read-only property of the\nMagnetometer interface returns a number specifying\nthe magnetic field around the device's z-axis." }, + { + "mdn_url": "/en-US/docs/Web/API/ManagedMediaSource", + "pageType": "web-api-interface", + "summary": "The ManagedMediaSource interface of the Media Source Extensions API is a MediaSource that actively manages its memory content. Unlike a regular MediaSource, the user agent can evict content from its ManagedSourceBuffer objects at any time, for reasons such as memory or hardware limitations. This makes it suitable for power-efficient streaming scenarios where the user agent needs more control over buffered media data." + }, + { + "mdn_url": "/en-US/docs/Web/API/ManagedMediaSource/endstreaming_event", + "pageType": "web-api-event", + "summary": "The endstreaming event of the ManagedMediaSource interface is fired when the streaming property changes from true to false. This indicates that the user agent has enough data buffered to ensure uninterrupted playback, and the application can stop fetching new media segments." + }, + { + "mdn_url": "/en-US/docs/Web/API/ManagedMediaSource/ManagedMediaSource", + "pageType": "web-api-constructor", + "summary": "The ManagedMediaSource() constructor of the ManagedMediaSource interface constructs and returns a new ManagedMediaSource object instance with no associated source buffers." + }, + { + "mdn_url": "/en-US/docs/Web/API/ManagedMediaSource/startstreaming_event", + "pageType": "web-api-event", + "summary": "The startstreaming event of the ManagedMediaSource interface is fired when the streaming property changes from false to true. This indicates that the user agent needs more data to ensure uninterrupted playback, and the application should begin fetching and appending media segments." + }, + { + "mdn_url": "/en-US/docs/Web/API/ManagedMediaSource/streaming", + "pageType": "web-api-instance-property", + "summary": "The streaming read-only property of the ManagedMediaSource interface is a boolean indicating whether the application should actively fetch and append media data." + }, + { + "mdn_url": "/en-US/docs/Web/API/ManagedSourceBuffer", + "pageType": "web-api-interface", + "summary": "The ManagedSourceBuffer interface of the Media Source Extensions API is a SourceBuffer that is created by a ManagedMediaSource when addSourceBuffer() is called. It inherits all the properties and methods of SourceBuffer, and additionally fires a bufferedchange event whenever the buffered ranges change — including when the user agent evicts content as part of its memory cleanup algorithm." + }, + { + "mdn_url": "/en-US/docs/Web/API/ManagedSourceBuffer/bufferedchange_event", + "pageType": "web-api-event", + "summary": "The bufferedchange event of the ManagedSourceBuffer interface is fired when the ManagedSourceBuffer's buffered range changes. This can occur following a call to appendBuffer(), remove(), endOfStream(), or as a consequence of the user agent running the memory cleanup algorithm." + }, { "mdn_url": "/en-US/docs/Web/API/MathMLElement", "pageType": "web-api-interface", @@ -20134,6 +20189,11 @@ "pageType": "web-api-instance-property", "summary": "Returns a PluginArray object, listing the Plugin objects describing the plugins installed in the application.\nNamed properties of the returned object are not enumerable (except in very old browser versions)." }, + { + "mdn_url": "/en-US/docs/Web/API/Navigator/preferences", + "pageType": "web-api-instance-property", + "summary": "The preferences read-only property of the Navigator interface returns a PreferenceManager object for the current document. This is the entry point for the User Preferences API functionality." + }, { "mdn_url": "/en-US/docs/Web/API/Navigator/presentation", "pageType": "web-api-instance-property", @@ -22874,6 +22934,71 @@ "pageType": "web-api-instance-method", "summary": "The resetSensor() method of the VRDisplay interface can be used to reset the sensor if desired, returning the position and orientation values to zero." }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceManager", + "pageType": "web-api-interface", + "summary": "The PreferenceManager interface of the User Preferences API provides access to PreferenceObject objects used to query and modify user preferences." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceManager/colorScheme", + "pageType": "web-api-instance-property", + "summary": "The colorScheme read-only property of the PreferenceManager interface returns a PreferenceObject used to override the user's preference for the color scheme of the site." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceManager/contrast", + "pageType": "web-api-instance-property", + "summary": "The contrast read-only property of the PreferenceManager interface returns a PreferenceObject used to override the user's preference for the contrast of the site." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceManager/reducedData", + "pageType": "web-api-instance-property", + "summary": "The reducedData read-only property of the PreferenceManager interface returns a PreferenceObject used to override the user's preference for the reduced data of the site." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceManager/reducedMotion", + "pageType": "web-api-instance-property", + "summary": "The reducedMotion read-only property of the PreferenceManager interface returns the PreferenceObject used to override the user's preference for the reduced motion of the site." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceManager/reducedTransparency", + "pageType": "web-api-instance-property", + "summary": "The reducedTransparency read-only property of the PreferenceManager interface returns the PreferenceObject used to override the user's preference for the reduced transparency of the site." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceObject", + "pageType": "web-api-interface", + "summary": "The PreferenceObject interface of the User Preferences API provides attributes and methods for reading and overriding user preferences." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceObject/change_event", + "pageType": "web-api-event", + "summary": "The change event of the PreferenceObject interface is fired when a PreferenceObject override value changes. This can happen due to requestOverride or clearOverride method calls." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceObject/clearOverride", + "pageType": "web-api-instance-method", + "summary": "The clearOverride method of the PreferenceObject interface resets the must be provided value." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceObject/override", + "pageType": "web-api-instance-method", + "summary": "The override read-only property of the PreferenceObject interface returns the override of a preference if one is set, null otherwise." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceObject/requestOverride", + "pageType": "web-api-instance-method", + "summary": "The requestOverride method of the PreferenceObject interface sets an must be provided value for a particular preference." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceObject/validValues", + "pageType": "web-api-instance-property", + "summary": "The validValues read-only property of the PreferenceObject interface returns a read-only array of values that are accepted by the override." + }, + { + "mdn_url": "/en-US/docs/Web/API/PreferenceObject/value", + "pageType": "web-api-instance-property", + "summary": "The value read-only property of the PreferenceManager interface returns the override value of a preference if one is set, or the UA-defined value if an override value is not set." + }, { "mdn_url": "/en-US/docs/Web/API/Presentation", "pageType": "web-api-interface", @@ -33439,6 +33564,11 @@ "pageType": "web-api-interface", "summary": "The USBOutTransferResult interface of the WebUSB API provides the result from a call to the transferOut() and controlTransferOut() methods of the USBDevice interface. It represents the result from requesting a transfer of data from the USB host to the USB device." }, + { + "mdn_url": "/en-US/docs/Web/API/User_Preferences_API", + "pageType": "web-api-overview", + "summary": "The User Preferences API allows page authors to programmatically override user preference-related media query settings." + }, { "mdn_url": "/en-US/docs/Web/API/User-Agent_Client_Hints_API", "pageType": "web-api-overview", @@ -37147,7 +37277,7 @@ { "mdn_url": "/en-US/docs/Web/API/Window/pageshow_event", "pageType": "web-api-event", - "summary": "The pageshow event is sent to a Window when the browser displays the window's document due to navigation." + "summary": "The pageshow event is sent to a Window when the browser navigates to a new document." }, { "mdn_url": "/en-US/docs/Web/API/Window/pageswap_event", @@ -41072,7 +41202,7 @@ { "mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/letter-spacing", "pageType": "css-property", - "summary": "The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together." + "summary": "The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together." }, { "mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/lighting-color", @@ -42312,7 +42442,7 @@ { "mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/word-spacing", "pageType": "css-property", - "summary": "The word-spacing CSS property sets the length of space between words and between tags." + "summary": "The word-spacing CSS property sets the spacing between words and between tags." }, { "mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/writing-mode", diff --git a/package-lock.json b/package-lock.json index 0e367209b..eea5d4ef9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1083,13 +1083,13 @@ ] }, "node_modules/@webref/css": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/@webref/css/-/css-8.4.0.tgz", - "integrity": "sha512-nrlZfve8bnW8i2t5TAu9R6MfLuX5fQHnEjL8/Jr7f1u5n+eMycMi7KPufn6bYoFl0IHDhGuU+7dqFU1M13asDg==", + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/@webref/css/-/css-8.4.1.tgz", + "integrity": "sha512-8DTncc0dhWJ4lVbi9rhLVyMNm+YEYrsFLRbdjgMxPupjNHcAdXiT1s4ZWJXzN4ckUvYQKTjLJKtZWc6tsR4FIQ==", "dev": true, "license": "MIT", "peerDependencies": { - "css-tree": "^3.1.0" + "css-tree": "^3.2.1" } }, "node_modules/@webref/elements": { @@ -1107,9 +1107,9 @@ "license": "MIT" }, "node_modules/@webref/idl": { - "version": "3.73.2", - "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.73.2.tgz", - "integrity": "sha512-vX+wczckG7Nm4sdqh99OSbbmGeV164FDHl9EAhDC8qL1Z3ZMWBpKoeMEh+wgTLe3RtTKUyScwIwr0QMi+H3HXw==", + "version": "3.74.0", + "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.74.0.tgz", + "integrity": "sha512-s811S8wjI6sWE5kH2CFeGdh5+fAYH3uIPJH63YSeVk4eEbXH/Yc3CpdsDsPMA8HBCmItXGN8HednEktZLiXvfw==", "dev": true, "license": "MIT", "peerDependencies": { @@ -1421,15 +1421,15 @@ } }, "node_modules/css-tree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", - "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz", + "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==", "dev": true, "license": "MIT", "peer": true, "dependencies": { - "mdn-data": "2.12.2", - "source-map-js": "^1.0.1" + "mdn-data": "2.27.1", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" @@ -2703,9 +2703,9 @@ } }, "node_modules/mdn-data": { - "version": "2.12.2", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", - "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", + "version": "2.27.1", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", + "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", "dev": true, "license": "CC0-1.0", "peer": true