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