Fix exports

This commit is contained in:
Adria Navarro 2024-12-05 15:59:43 +01:00
parent 3d5f276304
commit 9bf7098c7d
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
export { EventProcessor } from "@budibase/types"
export type { EventProcessor } from "@budibase/types"

View File

@ -7,7 +7,7 @@ import { addListeners, StalledFn } from "./listeners"
import { Duration } from "../utils"
import * as timers from "../timers"
export { QueueOptions, Queue, JobOptions } from "bull"
export type { QueueOptions, Queue, JobOptions } from "bull"
// the queue lock is held for 5 minutes
const QUEUE_LOCK_MS = Duration.fromMinutes(5).toMs()