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
/
src
/
TJPurchase.ts
12 lines
(8 loc)
•
260 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
NativeModules
}
from
'react-native'
;
const
Tapjoy
=
NativeModules
.
TapjoyReactNativeSdk
;
class
TJPurchase
{
trackPurchase
(
currencyCode
:
string
,
price
:
number
):
void
{
Tapjoy
.
trackPurchase
(currencyCode, price); } }
export
default
TJPurchase
;