37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
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;
|