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 { MediaChromeButton } from './media-chrome-button.js';
/**
* @slot off - An element shown when the media is muted or the medias volume is 0.
* @slot low - An element shown when the medias volume is “low” (less than 50% / 0.5).
* @slot medium - An element shown when the medias volume is “medium” (between 50% / 0.5 and 75% / 0.75).
* @slot high - An element shown when the medias volume is “high” (75% / 0.75 or greater).
* @slot icon - An element for representing all states in a single icon
*
* @attr {string} mediavolumelevel - (read-only) Set to the media volume level.
*
* @cssproperty [--media-mute-button-display = inline-flex] - `display` property of button.
*/
declare class MediaMuteButton extends MediaChromeButton {
static get observedAttributes(): string[];
constructor(options?: object);
connectedCallback(): void;
attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
/**
* @type {string | undefined}
*/
get mediaVolumeLevel(): string | undefined;
set mediaVolumeLevel(value: string | undefined);
handleClick(): void;
}
export default MediaMuteButton;