From 2fd4556ae18fd2e465148621c1881c48c947de8a Mon Sep 17 00:00:00 2001 From: mlanter Date: Wed, 14 Jun 2017 17:09:07 -0700 Subject: [PATCH] Fix flow errors --- index.ios.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.ios.js b/index.ios.js index cce7a58..b50efa8 100644 --- a/index.ios.js +++ b/index.ios.js @@ -31,6 +31,9 @@ const _actionHandlers = new Map(); let _actionListener; export class NotificationAction { + options: Object; + handler: Function; + constructor(options: Object, handler: Function) { this.options = options; this.handler = handler; @@ -38,6 +41,8 @@ export class NotificationAction { } export class NotificationCategory { + options: Object; + constructor(options: Object) { this.options = options; } -- 2.26.2