Skip to content

Commit

Permalink
fix(kuzzleeventemitter): add missing generics parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauNeko committed Aug 21, 2024
1 parent b1022b0 commit 48cbcf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/kuzzle/event/KuzzleEventEmitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ class KuzzleEventEmitter extends EventEmitter {
/**
* Map of plugin pipe handler functions by event
*/
this.pluginPipes = new Map();
this.pluginPipes = new Map<string, PipeEventHandler[]>();

/**
* Map of plugin pipe definitions by pipeId
*/
this.pluginPipeDefinitions = new Map();
this.pluginPipeDefinitions = new Map<string, PluginPipeDefinition>();

this.corePipes = new Map<string, PipeEventHandler[]>();
this.coreAnswerers = new Map<string, AskEventHandler>();
Expand Down

0 comments on commit 48cbcf2

Please sign in to comment.