aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Linski <[email protected]>2020-07-09 20:51:56 +0200
committerGitHub <[email protected]>2020-07-09 14:51:56 -0400
commit1c26402ff5841dba6b353a6c4e17decd09dccf06 (patch)
treebd66f52f6bcef2384092730d9a514e6a64ea0a21
parent7d25805889ccda393e622d3732cc2dc287dc3c15 (diff)
Add missing space (#103)
Co-authored-by: Jason Miller <[email protected]>
-rw-r--r--src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index cfb1cf3..e640292 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -3,7 +3,7 @@ export type EventType = string | symbol;
// An event handler can take an optional event argument
// and should not return a value
export type Handler = (event?: any) => void;
-export type WildcardHandler= (type: EventType, event?: any) => void
+export type WildcardHandler = (type: EventType, event?: any) => void
// An array of all currently registered event handlers for a type
export type EventHandlerList = Array<Handler>;