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,33 @@
import { MediaChromeButton } from './media-chrome-button.js';
/**
* @slot enter - An element shown when the media is not in AirPlay mode and pressing the button will open the AirPlay menu.
* @slot exit - An element shown when the media is in AirPlay mode and pressing the button will open the AirPlay menu.
* @slot icon - The element shown for the AirPlay buttons display.
*
* @attr {(unavailable|unsupported)} mediaairplayunavailable - (read-only) Set if AirPlay is unavailable.
* @attr {boolean} mediaisairplaying - (read-only) Present if the media is airplaying.
*
* @cssproperty [--media-airplay-button-display = inline-flex] - `display` property of button.
*
* @event {CustomEvent} mediaairplayrequest
*/
declare class MediaAirplayButton extends MediaChromeButton {
static get observedAttributes(): string[];
constructor(options?: {
slotTemplate?: HTMLTemplateElement;
});
connectedCallback(): void;
attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
/**
* Are we currently airplaying
*/
get mediaIsAirplaying(): boolean;
set mediaIsAirplaying(value: boolean);
/**
* Airplay unavailability state
*/
get mediaAirplayUnavailable(): string | undefined;
set mediaAirplayUnavailable(value: string | undefined);
handleClick(): void;
}
export default MediaAirplayButton;