react-native-notifications
Version:
Advanced Push Notifications (Silent, interactive notifications) for iOS & Android
11 lines (10 loc) • 340 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationActionResponse = void 0;
class NotificationActionResponse {
constructor(response) {
this.identifier = response.identifier;
this.text = response.text;
}
}
exports.NotificationActionResponse = NotificationActionResponse;
;