Commit 1838e42d authored by Ran's avatar Ran Committed by GitHub

Merge pull request #75 from opendoor-labs/flow_fix

Fix flow errors
parents de8a6cbb 2fd4556a
...@@ -31,6 +31,9 @@ const _actionHandlers = new Map(); ...@@ -31,6 +31,9 @@ const _actionHandlers = new Map();
let _actionListener; let _actionListener;
export class NotificationAction { export class NotificationAction {
options: Object;
handler: Function;
constructor(options: Object, handler: Function) { constructor(options: Object, handler: Function) {
this.options = options; this.options = options;
this.handler = handler; this.handler = handler;
...@@ -38,6 +41,8 @@ export class NotificationAction { ...@@ -38,6 +41,8 @@ export class NotificationAction {
} }
export class NotificationCategory { export class NotificationCategory {
options: Object;
constructor(options: Object) { constructor(options: Object) {
this.options = options; this.options = options;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment