We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1022b0 commit 48cbcf2Copy full SHA for 48cbcf2
lib/kuzzle/event/KuzzleEventEmitter.ts
@@ -80,12 +80,12 @@ class KuzzleEventEmitter extends EventEmitter {
80
/**
81
* Map of plugin pipe handler functions by event
82
*/
83
- this.pluginPipes = new Map();
+ this.pluginPipes = new Map<string, PipeEventHandler[]>();
84
85
86
* Map of plugin pipe definitions by pipeId
87
88
- this.pluginPipeDefinitions = new Map();
+ this.pluginPipeDefinitions = new Map<string, PluginPipeDefinition>();
89
90
this.corePipes = new Map<string, PipeEventHandler[]>();
91
this.coreAnswerers = new Map<string, AskEventHandler>();
0 commit comments