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,36 @@
import { globalThis } from './utils/server-safe-globals.js';
/**
* @extends {HTMLElement}
*
* @attr {boolean} mediapaused - (read-only) Present if the media is paused.
* @attr {string} mediacontroller - The element `id` of the media controller to connect to (if not nested within).
*
* @cssproperty --media-gesture-receiver-display - `display` property of gesture receiver.
* @cssproperty --media-control-display - `display` property of control.
*/
declare class MediaGestureReceiver extends globalThis.HTMLElement {
#private;
static get observedAttributes(): string[];
nativeEl: HTMLElement;
_pointerType: string;
constructor(options?: {
slotTemplate?: HTMLTemplateElement;
defaultContent?: string;
});
attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
connectedCallback(): void;
disconnectedCallback(): void;
handleEvent(event: any): void;
/**
* @type {boolean} Is the media paused
*/
get mediaPaused(): boolean;
set mediaPaused(value: boolean);
/**
* @abstract
* @argument {Event} e
*/
handleTap(e: any): void;
handleMouseClick(e: any): void;
}
export default MediaGestureReceiver;