mmenu-js
Version:
The best javascript plugin for app look-alike on- and off-canvas menus with sliding submenus for your website and webapp.
20 lines (14 loc) • 431 B
TypeScript
/** Options for the columns add-on. */
interface mmOptionsColumns {
/** Whether or not a to split up the panels in multiple columns. */
add ?: boolean
/** Map for the visible columns. */
visible ?: mmOptionsColumnsVisible
}
/** Map for the visible columns. */
interface mmOptionsColumnsVisible {
/** The minimum number of visible columns. */
min ?: number
/** The maximum number of visible columns. */
max ?: number
}