Repository URL to install this package:
|
Version:
3.4.3 ▾
|
import { InputProps, InputState } from '../../inputs'
import { ExpiryDateInputState } from '../CreditCardExpiryDatePlugin'
export interface CreditCardPluginNestedState {
cardNumberState: InputState
cvvState: InputState
expiryDateState: ExpiryDateInputState
}
export type CreditCardPluginProps = InputProps & {
state: InputState<CreditCardPluginNestedState>
}