2024-03-14 12:27:47 +01:00
|
|
|
import type { Queue } from 'bull'
|
|
|
|
|
|
|
|
|
|
import type { Reservation } from './entity'
|
|
|
|
|
|
2023-05-26 15:43:14 -05:00
|
|
|
export const RESERVATIONS_QUEUE_NAME = 'reservations'
|
2024-03-14 12:27:47 +01:00
|
|
|
|
|
|
|
|
export type ReservationsQueue = Queue<Reservation>
|