change event bus parameter names

This commit is contained in:
Tamius Han 2023-03-29 21:51:06 +02:00
parent 1da147e110
commit e9bd3154a5

View File

@ -3,7 +3,7 @@ import CommsServer from './comms/CommsServer';
export interface EventBusCommand {
isGlobal?: boolean,
function: (commandConfig: any, context?: any) => void | Promise<void>
function: (commandData: any, context?: any) => void | Promise<void>
}
export interface EventBusContext {