7 lines
139 B
TypeScript
7 lines
139 B
TypeScript
import type { RegisterOptions } from "react-hook-form"
|
|
|
|
export type CountryProps = {
|
|
name?: string
|
|
registerOptions?: RegisterOptions
|
|
}
|