statistiques/src/period/Period.ts

5 lines
54 B
TypeScript
Raw Normal View History

2024-06-02 12:34:11 +00:00
export type Period = {
start: Date;
end: Date;
};