| import type { FieldElement } from '../types'; | |
| import isCheckBoxInput from './isCheckBoxInput'; | |
| import isRadioInput from './isRadioInput'; | |
| export default (ref: FieldElement): ref is HTMLInputElement => | |
| isRadioInput(ref) || isCheckBoxInput(ref); | |
| import type { FieldElement } from '../types'; | |
| import isCheckBoxInput from './isCheckBoxInput'; | |
| import isRadioInput from './isRadioInput'; | |
| export default (ref: FieldElement): ref is HTMLInputElement => | |
| isRadioInput(ref) || isCheckBoxInput(ref); | |