react-native-notifications
Version:
Advanced Push Notifications (Silent, interactive notifications) for iOS & Android
20 lines (19 loc) • 776 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationChannel = void 0;
class NotificationChannel {
constructor(channelId, name, importance, description, enableLights, enableVibration, groupId, lightColor, showBadge, soundFile, vibrationPattern) {
this.channelId = channelId;
this.name = name;
this.importance = importance;
this.description = description;
this.enableLights = enableLights;
this.enableVibration = enableVibration;
this.groupId = groupId;
this.lightColor = lightColor;
this.showBadge = showBadge;
this.soundFile = soundFile;
this.vibrationPattern = vibrationPattern;
}
}
exports.NotificationChannel = NotificationChannel;