Commit 2fd4556a authored by mlanter's avatar mlanter Committed by GitHub

Fix flow errors

parent 43a4c895
......@@ -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;
}
......
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