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