import { generateID } from './helpers'
export class Option {
id: string
value: string
text: string
html: string
defaultSelected: boolean
selected: boolean
display: boolean
disabled: boolean
placeholder: boolean
class: string
style: string
data: { [key: string]: string }
mandatory: boolean
constructor(option: Partial