6 lines
90 B
TypeScript
6 lines
90 B
TypeScript
![]() |
import {Dayjs} from "dayjs";
|
||
|
|
||
|
interface Schedule {
|
||
|
startDate: Dayjs;
|
||
|
endDate: Dayjs;
|
||
|
}
|