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,40 @@
import { AttributeTokenList } from '../utils/attribute-token-list.js';
import { MediaChromeMenu } from './media-chrome-menu.js';
export declare const Attributes: {
RATES: string;
};
/**
* @extends {MediaChromeMenu}
*
* @slot - Default slotted elements.
* @slot header - An element shown at the top of the menu.
* @slot checked-indicator - An icon element indicating a checked menu-item.
*
* @attr {string} rates - Set custom playback rates for the user to choose from.
* @attr {string} mediaplaybackrate - (read-only) Set to the media playback rate.
*/
declare class MediaPlaybackRateMenu extends MediaChromeMenu {
#private;
static get observedAttributes(): string[];
constructor();
attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
connectedCallback(): void;
disconnectedCallback(): void;
/**
* Returns the anchor element when it is a floating menu.
*/
get anchorElement(): HTMLElement;
/**
* Will return a DOMTokenList.
* Setting a value will accept an array of numbers.
*/
get rates(): AttributeTokenList | number[] | undefined;
set rates(value: AttributeTokenList | number[] | undefined);
/**
* The current playback rate
*/
get mediaPlaybackRate(): number;
set mediaPlaybackRate(value: number);
}
export { MediaPlaybackRateMenu };
export default MediaPlaybackRateMenu;