react-native-notifications
Version:
Advanced Push Notifications (Silent, interactive notifications) for iOS & Android
21 lines (20 loc) • 726 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationAction = exports.NotificationCategory = void 0;
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;
;