refactor(core): Organize all event maps (#10997)

This commit is contained in:
Iván Ovejero
2024-09-30 10:44:03 +02:00
committed by GitHub
parent 3a65bdc1f5
commit 63e6f1fa38
19 changed files with 161 additions and 159 deletions

View File

@@ -0,0 +1,8 @@
export type QueueMetricsEventMap = {
'job-counts-updated': {
active: number;
completed: number;
failed: number;
waiting: number;
};
};