11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import type { RegisterOptions } from "react-hook-form"
|
|
|
|
export interface PaymentOptionProps {
|
|
name: string
|
|
value: string
|
|
label: string
|
|
cardNumber?: string
|
|
registerOptions?: RegisterOptions
|
|
onChange?: () => void
|
|
}
|