inogen/app/types/util.type.ts
2025-10-12 21:30:13 +03:30

7 lines
112 B
TypeScript

export interface CalendarDate {
start: string;
end: string;
sinceMonth?: string;
untilMonth?: string;
}