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