UNPKG

react-native-notifications

Version:

Advanced Push Notifications (Silent, interactive notifications) for iOS & Android

10 lines (8 loc) 193 B
export class NotificationActionResponse { identifier: string; text?: string; constructor(response: any) { this.identifier = response.identifier; this.text = response.text; } }