Skip to content

Update core dependencies #1858

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10125,7 +10125,11 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/alt)
*/
alt: string;
/** Sets or retrieves the coordinates of the object. */
/**
* Sets or retrieves the coordinates of the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/coords)
*/
coords: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/download) */
download: string;
Expand All @@ -10143,7 +10147,11 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/relList) */
get relList(): DOMTokenList;
set relList(value: string);
/** Sets or retrieves the shape of the object. */
/**
* Sets or retrieves the shape of the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/shape)
*/
shape: string;
/**
* Sets or retrieves the window or frame at which to target content.
Expand Down Expand Up @@ -12386,7 +12394,11 @@ declare var HTMLMeterElement: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement)
*/
interface HTMLModElement extends HTMLElement {
/** Sets or retrieves reference information about the object. */
/**
* Sets or retrieves reference information about the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)
*/
cite: string;
/** Sets or retrieves the date and time of a modification to the object. */
dateTime: string;
Expand Down Expand Up @@ -12915,7 +12927,11 @@ declare var HTMLProgressElement: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement)
*/
interface HTMLQuoteElement extends HTMLElement {
/** Sets or retrieves reference information about the object. */
/**
* Sets or retrieves reference information about the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement/cite)
*/
cite: string;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
Expand Down Expand Up @@ -21894,6 +21910,7 @@ declare var SVGTransformList: {
};

interface SVGURIReference {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement/href) */
readonly href: SVGAnimatedString;
}

Expand Down
25 changes: 21 additions & 4 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10114,7 +10114,11 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/alt)
*/
alt: string;
/** Sets or retrieves the coordinates of the object. */
/**
* Sets or retrieves the coordinates of the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/coords)
*/
coords: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/download) */
download: string;
Expand All @@ -10131,7 +10135,11 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
rel: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/relList) */
readonly relList: DOMTokenList;
/** Sets or retrieves the shape of the object. */
/**
* Sets or retrieves the shape of the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/shape)
*/
shape: string;
/**
* Sets or retrieves the window or frame at which to target content.
Expand Down Expand Up @@ -12369,7 +12377,11 @@ declare var HTMLMeterElement: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement)
*/
interface HTMLModElement extends HTMLElement {
/** Sets or retrieves reference information about the object. */
/**
* Sets or retrieves reference information about the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)
*/
cite: string;
/** Sets or retrieves the date and time of a modification to the object. */
dateTime: string;
Expand Down Expand Up @@ -12897,7 +12909,11 @@ declare var HTMLProgressElement: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement)
*/
interface HTMLQuoteElement extends HTMLElement {
/** Sets or retrieves reference information about the object. */
/**
* Sets or retrieves reference information about the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement/cite)
*/
cite: string;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
Expand Down Expand Up @@ -21873,6 +21889,7 @@ declare var SVGTransformList: {
};

interface SVGURIReference {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement/href) */
readonly href: SVGAnimatedString;
}

Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading