Files

7 lines
102 B
TypeScript
Raw Permalink Normal View History

2025-11-13 13:38:59 +08:00
export interface Day {
date: Date;
type: string;
text: number;
bottomInfo?: string;
}