forked from github/plane
5 lines
72 B
TypeScript
5 lines
72 B
TypeScript
|
export interface ICalendarRange {
|
||
|
startDate: Date;
|
||
|
endDate: Date;
|
||
|
}
|