8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
import { RegisterOptions } from "react-hook-form"
|
|
|
|
export interface CheckboxProps
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
name: string
|
|
registerOptions?: RegisterOptions
|
|
}
|