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