apns2
Version:
Node client for connecting to Apple's Push Notification Service using the new HTTP/2 protocol with JSON web tokens.
13 lines (12 loc) • 424 B
TypeScript
export declare const PushType: {
readonly alert: "alert";
readonly background: "background";
readonly voip: "voip";
readonly complication: "complication";
readonly fileprovider: "fileprovider";
readonly mdm: "mdm";
readonly liveactivity: "liveactivity";
readonly location: "location";
readonly pushtotalk: "pushtotalk";
};
export type PushType = (typeof PushType)[keyof typeof PushType];