7 lines
120 B
TypeScript
7 lines
120 B
TypeScript
![]() |
import {Dayjs} from "dayjs";
|
||
|
|
||
|
export default interface Schedule {
|
||
|
key: number;
|
||
|
startDate: Dayjs;
|
||
|
endDate: Dayjs;
|
||
|
}
|