9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
import type { RegisterOptions } from "react-hook-form"
|
|
|
|
export type PhoneProps = {
|
|
countrySelectName?: string
|
|
name?: string
|
|
placeholder?: string
|
|
registerOptions?: RegisterOptions
|
|
}
|