react-native-unit-components
Version:
Unit React Native components
24 lines • 1 kB
TypeScript
/// <reference types="react" />
import type { UNComponentsOnLoadResponse, UNACHOnLoadData, UNPlaidAccountFilter, UNACHPayment } from '../../types/shared';
export interface UNACHCreditComponentProps {
accountId?: string;
theme?: string;
language?: string;
isAutoFocus?: boolean;
withPlaid?: boolean;
sameDay?: boolean;
showSameDaySelection?: boolean;
onPaymentCreated?: (data: UNACHPayment) => void;
onInitialStageBackButtonClicked?: () => void;
onFinalStageDoneButtonClicked?: () => void;
onLoad?: (response: UNComponentsOnLoadResponse<UNACHOnLoadData>) => void;
plaidAccountFilters?: UNPlaidAccountFilter[];
plaidLinkCustomizationName?: string;
initialStageBackButton?: boolean;
finalStageDoneButton?: boolean;
allowCounterpartyDelete?: boolean;
showAccountTypeSelector?: boolean;
}
declare const _default: (props: UNACHCreditComponentProps) => JSX.Element;
export default _default;
//# sourceMappingURL=UNACHCreditComponent.d.ts.map