7 lines
116 B
TypeScript
7 lines
116 B
TypeScript
import type { ISODate } from '@/shared/types/date'
|
|
|
|
export interface TimeRange {
|
|
start: ISODate
|
|
end?: ISODate
|
|
}
|