Skip to content

Commit 1c26402

Browse files
jaylinskidevelopit
andauthored
Add missing space (#103)
Co-authored-by: Jason Miller <[email protected]>
1 parent 7d25805 commit 1c26402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export type EventType = string | symbol;
33
// An event handler can take an optional event argument
44
// and should not return a value
55
export type Handler = (event?: any) => void;
6-
export type WildcardHandler= (type: EventType, event?: any) => void
6+
export type WildcardHandler = (type: EventType, event?: any) => void
77

88
// An array of all currently registered event handlers for a type
99
export type EventHandlerList = Array<Handler>;

0 commit comments

Comments
 (0)