react-native-unit-components
Version:
Unit React Native components
20 lines • 816 B
TypeScript
/// <reference types="react" />
import { UNAccountData, UNOnLoadResponse } from '../../types/shared';
import { UNWirePaymentData } from '../../types/shared/wirePayment.types';
export interface UNWirePaymentComponentProps {
customerToken: string;
accountId?: string;
fee?: number;
theme?: string;
language?: string;
isAutoFocus?: boolean;
initialStageBackButton?: boolean;
finalStageDoneButton?: boolean;
onPaymentCreated?: (data: UNWirePaymentData) => void;
onLoad?: (response: UNOnLoadResponse<[UNAccountData]>) => void;
onInitialStageBackButtonClicked?: () => void;
onFinalStageDoneButtonClicked?: () => void;
}
declare const _default: (props: UNWirePaymentComponentProps) => JSX.Element;
export default _default;
//# sourceMappingURL=UNWirePaymentComponent.d.ts.map