aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/lib/actions.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actions/lib/actions.ts b/src/actions/lib/actions.ts
index 378cef574..ea9a8fe46 100644
--- a/src/actions/lib/actions.ts
+++ b/src/actions/lib/actions.ts
@@ -10,7 +10,7 @@ export interface Actions {
10 [key: string]: { 10 [key: string]: {
11 [key: string]: { 11 [key: string]: {
12 (...args: any[]): void; 12 (...args: any[]): void;
13 listeners: Array<Function>; 13 listeners: Function[];
14 notify: (params: any) => void; 14 notify: (params: any) => void;
15 listen: (listener: (params: any) => void) => void; 15 listen: (listener: (params: any) => void) => void;
16 off: (listener: (params: any) => void) => void; 16 off: (listener: (params: any) => void) => void;