| 15 | } |
| 16 | |
| 17 | interface AndroidNotificationData extends BaseNotificationData { |
| 18 | groupKey?: string; |
| 19 | groupMessage?: string; |
| 20 | ledColor?: string; |
| 21 | priority?: number; |
| 22 | smallIcon?: string; |
| 23 | largeIcon?: string; |
| 24 | bigPicture?: string; |
| 25 | collapseId?: string; |
| 26 | fromProjectNumber?: string; |
| 27 | smallIconAccentColor?: string; |
| 28 | lockScreenVisibility?: string; |
| 29 | androidNotificationId?: number; |
| 30 | } |
| 31 | |
| 32 | interface iOSNotificationData extends BaseNotificationData { |
| 33 | badge?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected