Repository URL to install this package:
|
Version:
0.9.6 ▾
|
ui-component-library
/
src
/
components
/
abstractions
/
PaymentMethods
/
PaymentCardForm
/
typings.ts
|
|---|
import { ReactNode } from 'react'
export interface PaymentCardFormNode {
(props: PaymentCardFormPlaceholderProps): ReactNode
}
export interface PaymentCardFormPlaceholderProps {
className?: string
children?: ReactNode
renderPaymentCardFormWrapper?: PaymentCardFormNode
renderPaymentCardFormContainer?: PaymentCardFormNode
renderPaymentCardFormNameSection?: PaymentCardFormNode
renderPaymentCardDetailsSection?: PaymentCardFormNode
renderPaymentCardMethodCheckSection?: PaymentCardFormNode
renderPaymentCardFormButtonSection?: PaymentCardFormNode
}