UNPKG

@trycourier/courier-react-native

Version:

Inbox, Push Notifications, and Preferences for React Native

15 lines (14 loc) 368 B
import { Modules } from "../Modules"; export class ClientModule { clientId; // Constructor to create a low level CourierClient constructor(options) { this.clientId = this.add(options); } add(options) { return Modules.Client.addClient(options); } remove() { return Modules.Client.removeClient(this.clientId); } }