UNPKG

react-native-toss-payments

Version:

리액트 네이티브용 토스페이먼츠 결제 연동 라이브러리

11 lines (10 loc) 479 B
import { WebViewMessageEvent } from 'react-native-webview'; import type { TossPaymentRequestDataTypes } from './types/payment.types'; declare type Props = { clientKey: string; payment: TossPaymentRequestDataTypes; onWebViewMessageReceived: (e: WebViewMessageEvent) => void; detectIsLoading: (isLoading: boolean) => void; }; declare const Payment: ({ clientKey, payment, onWebViewMessageReceived, detectIsLoading, }: Props) => JSX.Element; export default Payment;