openplayerjs
Version:
HTML5 video and audio player
14 lines (13 loc) • 304 B
TypeScript
/**
* Settings Subitem.
*
* @description An element that contains a key identifier and a human-readable label
* in the `Settings` submenus.
* @see [[SettingsItem.subitems]]
* @interface SettingsSubItem
* @export
*/
export default interface SettingsSubItem {
key: string;
label: string;
}