Back to nextjs

This commit is contained in:
2021-07-31 17:47:08 -04:00
parent edbfd8bb9e
commit b22eb01ca9
61 changed files with 18390 additions and 2373 deletions

View File

@@ -13,7 +13,8 @@ export interface QueueDto {
extractor?: string;
}
export type JobEvent = {
job?: unknown;
export interface JobEvent {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
job?: any;
err?: Error;
};