calcom/lib/schedule.model.tsx

7 lines
120 B
TypeScript
Raw Normal View History

2021-06-14 18:53:20 +00:00
import {Dayjs} from "dayjs";
export default interface Schedule {
key: number;
startDate: Dayjs;
endDate: Dayjs;
}