UNPKG
ngcash-tapjoy-react-native-sdk
Version:
latest (14.2.3)
14.2.3
14.2.2
14.2.1
ReactNative Plugin for Tapjoy SDK
dev.tapjoy.com
ngcash-tapjoy-react-native-sdk
/
lib
/
commonjs
/
TJPurchase.js
9 lines
(8 loc)
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
NativeModules
}
from
'react-native'
;
const
Tapjoy
=
NativeModules
.
TapjoyReactNativeSdk
;
class
TJPurchase
{
trackPurchase
(
currencyCode, price
) {
Tapjoy
.
trackPurchase
(currencyCode, price); } }
export
default
TJPurchase
;