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,31 @@
import { MediaChromeButton } from './media-chrome-button.js';
/**
* @slot indicator - The default is an SVG of a circle that changes to red when the video or audio is live. Can be replaced with your own SVG or font icon.
* @slot spacer - A simple text space ( ) between the indicator and the text.
* @slot text - The text content of the button, with a default of “LIVE”.
*
* @attr {boolean} mediapaused - (read-only) Present if the media is paused.
* @attr {boolean} mediatimeislive - (read-only) Present if the media playback is live.
*
* @cssproperty [--media-live-button-display = inline-flex] - `display` property of button.
* @cssproperty --media-live-button-icon-color - `fill` and `color` of not live button icon.
* @cssproperty --media-live-button-indicator-color - `fill` and `color` of live button icon.
*/
declare class MediaLiveButton extends MediaChromeButton {
static get observedAttributes(): string[];
constructor(options?: object);
connectedCallback(): void;
attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
/**
* @type {boolean} Is the media paused
*/
get mediaPaused(): boolean;
set mediaPaused(value: boolean);
/**
* @type {boolean} Is the media playback currently live
*/
get mediaTimeIsLive(): boolean;
set mediaTimeIsLive(value: boolean);
handleClick(): void;
}
export default MediaLiveButton;