node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import { MediaChromeMenuButton } from './media-chrome-menu-button.js';
/**
* @attr {string} mediarenditionselected - (read-only) Set to the selected rendition id.
* @attr {(unavailable|unsupported)} mediarenditionunavailable - (read-only) Set if rendition selection is unavailable.
*
* @cssproperty [--media-rendition-menu-button-display = inline-flex] - `display` property of button.
*/
declare class MediaRenditionMenuButton extends MediaChromeMenuButton {
static get observedAttributes(): string[];
constructor();
connectedCallback(): void;
/**
* Returns the element with the id specified by the `invoketarget` attribute.
*/
get invokeTargetElement(): HTMLElement | null;
/**
* Get selected rendition id.
*/
get mediaRenditionSelected(): string;
set mediaRenditionSelected(id: string);
get mediaHeight(): number;
set mediaHeight(height: number);
}
export { MediaRenditionMenuButton };
export default MediaRenditionMenuButton;