UNPKG

openplayerjs

Version:
14 lines (13 loc) 304 B
/** * 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; }