Files
pole-book/server/node_modules/media-chrome/dist/media-seek-forward-button.d.ts

31 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;