// Public entry point of the date-handling utilities shared between apps/api // and apps/web — every date computation in the monorepo (parsing/formatting // `YYYY-MM-DD` values, week/calendar math) goes through Luxon `DateTime` via // this package rather than hand-rolled `Date` arithmetic or a second, // differently-behaved date library creeping into one side only. // Re-exported so a consumer never needs its own direct `luxon` dependency // just to type a `DateTime` value passed to/from this package's functions. export { DateTime } from "luxon"; export * from "./date-only.js"; export * from "./week.js";