Interface PlaybackRateMenuProps

interface PlaybackRateMenuProps {
    attributeChangedCallback?: (
        attrName: string,
        oldValue: any,
        newValue: any,
    ) => void;
    children?: ReactNode;
    closeMenu?: () => void;
    closeOnInput?: boolean;
    connectedCallback?: () => void;
    disconnectedCallback?: () => void;
    heading?: ReactNode;
    openMenu?: () => void;
}

Hierarchy (View Summary)

Properties

attributeChangedCallback?: (
    attrName: string,
    oldValue: any,
    newValue: any,
) => void
children?: ReactNode

The menu's contents.

closeMenu?: () => void

Type declaration

    • (): void
    • Close the menu.

      Returns void

closeOnInput?: boolean
connectedCallback?: () => void
disconnectedCallback?: () => void
heading?: ReactNode

A slot for the menu's heading.

openMenu?: () => void

Type declaration

    • (): void
    • Open the menu.

      Returns void