import { IBaseForm } from '../baseForm' import { paramsInterfaceValidKey } from '../../../script/index' export interface RadioInterface extends IBaseForm { radioType?: string border?: boolean radio: Function } export class RadioConfig implements RadioInterface { model = '' type = 'infoRadio' label = '' radioType = '' border = false methods = (): void => {} disabled = (): boolean => false radio = (): void => {} constructor (params: RadioInterface) { paramsInterfaceValidKey(this, params) } }