choices.js
Version:
A vanilla JS customisable text input/select box plugin
18 lines (17 loc) • 370 B
TypeScript
import { InputChoice } from './input-choice';
import { InputGroup } from './input-group';
/**
* @deprecated Use InputChoice instead
*/
export interface Item extends InputChoice {
}
/**
* @deprecated Use InputChoice instead
*/
export interface Choice extends InputChoice {
}
/**
* @deprecated Use InputGroup instead
*/
export interface Group extends InputGroup {
}