From 027639fca0dc63f003b0616abea933b95fddb6fc Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Sun, 21 Oct 2018 16:21:42 +0200 Subject: [PATCH] Remove dispatcher from flux --- ui/src/stores/dispatcher.ts | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 ui/src/stores/dispatcher.ts diff --git a/ui/src/stores/dispatcher.ts b/ui/src/stores/dispatcher.ts deleted file mode 100644 index 25acd16..0000000 --- a/ui/src/stores/dispatcher.ts +++ /dev/null @@ -1,9 +0,0 @@ -import {Dispatcher} from 'flux'; - -export interface IEvent { - type: string; - // tslint:disable-next-line - payload?: any; -} - -export default new Dispatcher();