UNPKG

choices.js

Version:

A vanilla JS customisable text input/select box plugin

13 lines (11 loc) 275 B
// eslint-disable-next-line import/no-cycle import { ChoiceFull } from './choice-full'; export interface GroupFull { id: number; active: boolean; disabled: boolean; label?: string; element?: HTMLOptGroupElement; groupEl?: HTMLElement; choices: ChoiceFull[]; }