import { ISlot } from '../../molecules/slot/slot.component.interface'; import { IBooking } from '../../../shared/model/booking.interface'; export interface ISlotEvent { slot: ISlot; index: number; row: number; type: string; booking?: IBooking; }