react-native-notifications-pfy
Version:
Advanced Push Notifications (Silent, interactive notifications) for iOS & Android + Schedule Module
20 lines (19 loc) • 658 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class NotificationCategory {
constructor(identifier, actions) {
this.identifier = identifier;
this.actions = actions;
}
}
exports.NotificationCategory = NotificationCategory;
class NotificationAction {
constructor(identifier, activationMode, title, authenticationRequired, textInput) {
this.identifier = identifier;
this.activationMode = activationMode;
this.title = title;
this.authenticationRequired = authenticationRequired;
this.textInput = textInput;
}
}
exports.NotificationAction = NotificationAction;