diff --git a/index.ios.js b/index.ios.js index fa7c06cf16d46f503767ebe19826e5a07c7fa7a8..f30931d79a3c20d914ef53aa9e537894ccff0245 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; }