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