React native fixups
Reviewed By: @gabelevi Differential Revision: D2456130
This commit is contained in:
parent
c6495531fb
commit
2bbdbc704d
|
@ -18,6 +18,7 @@
|
|||
|
||||
export type Example = {
|
||||
title: string,
|
||||
/* $FlowFixMe(>=0.16.0) */
|
||||
render: () => ?ReactElement<any, any, any>,
|
||||
description?: string,
|
||||
platform?: string;
|
||||
|
|
|
@ -211,7 +211,7 @@ class PushNotificationIOS {
|
|||
* Listening to the `notification` event and invoking
|
||||
* `popInitialNotification` is sufficient
|
||||
*/
|
||||
constructor(nativeNotif) {
|
||||
constructor(nativeNotif: Object) {
|
||||
this._data = {};
|
||||
|
||||
// Extract data from Apple's `aps` dict as defined:
|
||||
|
|
Loading…
Reference in New Issue