more lint fixes

This commit is contained in:
Boki 2025-06-20 08:54:56 -04:00
parent cc014de397
commit 3e545cdaa9
8 changed files with 29 additions and 38 deletions

View file

@ -224,8 +224,8 @@ export class DeadLetterQueueHandler {
async inspectFailedJobs(limit = 10): Promise<Array<{
id: string;
name: string;
data: any;
error: any;
data: unknown;
error: unknown;
failedAt: string;
attempts: number;
}>> {