import { ScreenScheduleProps } from './ScreenSchedule'; export interface Schedule { id: number; name: string; color: string; display: boolean; } export type ScheduleWithScreen = Schedule & Omit;