UNPKG

choices.js

Version:

A vanilla JS customisable text input/select box plugin

13 lines (10 loc) 251 B
import { ChoiceFull } from './choice-full'; import { GroupFull } from './group-full'; export interface State { choices: ChoiceFull[]; groups: GroupFull[]; items: ChoiceFull[]; } export type StateChangeSet = { [K in keyof State]: boolean; };