UNPKG

node-apn

Version:

An interface to the Apple Push Notification service for Node.js

18 lines (13 loc) 277 B
"use strict"; const Client = require("./client")(); const Provider = require("../lib/provider")({ Client, }); const Notification = require("../lib/notification"); const token = require("../lib/token"); module.exports = { Provider, Notification, Client, token, };