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,30 @@
import { MediaChromeButton } from './media-chrome-button.js';
export declare const Attributes: {
SEEK_OFFSET: string;
};
/**
* @slot icon - The element shown for the seek forward buttons display.
*
* @attr {string} seekoffset - Adjusts how much time (in seconds) the playhead should seek forward.
* @attr {string} mediacurrenttime - (read-only) Set to the current media time.
*
* @cssproperty [--media-seek-forward-button-display = inline-flex] - `display` property of button.
*/
declare class MediaSeekForwardButton extends MediaChromeButton {
static get observedAttributes(): string[];
constructor(options?: {});
connectedCallback(): void;
attributeChangedCallback(attrName: string, _oldValue: string | null, newValue: string | null): void;
/**
* Seek amount in seconds
*/
get seekOffset(): number;
set seekOffset(value: number);
/**
* The current time in seconds
*/
get mediaCurrentTime(): number;
set mediaCurrentTime(time: number);
handleClick(): void;
}
export default MediaSeekForwardButton;