3815da2d3f
Server components now fetch composed data from the backend instead of directly querying SQLite and external APIs. Removes better-sqlite3 dependency from the frontend entirely. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
107 B
TypeScript
6 lines
107 B
TypeScript
export interface DayData {
|
|
isOpen: boolean;
|
|
hoursLabel: string | null;
|
|
specialType: string | null;
|
|
}
|