Files
SixFlagsSuperCalendar/lib/types.ts
T
josh 3815da2d3f refactor: make frontend a pure presentation layer fetching from backend API
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>
2026-04-23 21:43:59 -04:00

6 lines
107 B
TypeScript

export interface DayData {
isOpen: boolean;
hoursLabel: string | null;
specialType: string | null;
}