Skip to content

Commit

Permalink
🤖 Update core dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
orta authored and github-actions[bot] committed Jun 1, 2024
1 parent c71005f commit cca211d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
9 changes: 8 additions & 1 deletion baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5752,6 +5752,8 @@ declare var ClipboardEvent: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem)
*/
interface ClipboardItem {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/presentationStyle) */
readonly presentationStyle: PresentationStyle;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/types) */
readonly types: ReadonlyArray<string>;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/getType) */
Expand All @@ -5761,6 +5763,7 @@ interface ClipboardItem {
declare var ClipboardItem: {
prototype: ClipboardItem;
new(items: Record<string, string | Blob | PromiseLike<string | Blob>>, options?: ClipboardItemOptions): ClipboardItem;
supports(type: string): boolean;
};

/**
Expand Down Expand Up @@ -11450,7 +11453,11 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
imageSrcset: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
integrity: string;
/** Sets or retrieves the media type. */
/**
* Sets or retrieves the media type.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/media)
*/
media: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/referrerPolicy) */
referrerPolicy: string;
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

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

0 comments on commit cca211d

Please sign in to comment.