From e9bd3154a585d712b6f82bb2345b2145c12a0431 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Wed, 29 Mar 2023 21:51:06 +0200 Subject: [PATCH] change event bus parameter names --- src/ext/lib/EventBus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext/lib/EventBus.ts b/src/ext/lib/EventBus.ts index 283bd1d..7442cf6 100644 --- a/src/ext/lib/EventBus.ts +++ b/src/ext/lib/EventBus.ts @@ -3,7 +3,7 @@ import CommsServer from './comms/CommsServer'; export interface EventBusCommand { isGlobal?: boolean, - function: (commandConfig: any, context?: any) => void | Promise + function: (commandData: any, context?: any) => void | Promise } export interface EventBusContext {