7 lines
No EOL
126 B
TypeScript
7 lines
No EOL
126 B
TypeScript
import {Dayjs} from "dayjs";
|
|
|
|
export default interface Schedule {
|
|
id: number | null;
|
|
startDate: Dayjs;
|
|
endDate: Dayjs;
|
|
} |