fixed more lint issues

This commit is contained in:
Boki 2025-06-20 08:42:58 -04:00
parent 48503ce8d1
commit cc014de397
11 changed files with 42 additions and 11 deletions

View file

@ -4,7 +4,7 @@ export interface EventBusMessage<T = any> {
source: string;
timestamp: number;
data: T;
metadata?: Record<string, any>;
metadata?: Record<string, unknown>;
}
export interface EventHandler<T = any> {