UNPKG

@wikimedia/wvui

Version:

Wikimedia Vue UI (WVUI) – Wikimedia Foundation's Vue.js shared user-interface components for Wikipedia, MediaWiki, and beyond.

9 lines (8 loc) 294 B
export interface OptionsMenuItem { /** ID used to identify the item. By default, IDs are not displayed, only labels are. */ id: string; /** Label for display */ label: string; /** Whether the item is disabled. Disabled items cannot be selected. */ disabled?: boolean; }