react-native-moengage
Version:
MoEngage is a mobile marketing automation company. This react-native SDK helps you track events, trigger smart notifications and in-apps, provides a drop-in Inbox Controller for notifications.
15 lines (12 loc) • 386 B
text/typescript
import { MoEPlatform } from "./MoEPlatform";
import { MoEPushService } from "./MoEPushService";
export default class MoEPushToken {
platform: MoEPlatform;
pushService: MoEPushService;
token: String;
constructor(platform: MoEPlatform, pushService: MoEPushService, token: String) {
this.platform = platform;
this.pushService = pushService;
this.token = token;
}
}