routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
@@ -0,0 +1,45 @@
import type { CalendarTimestamp } from '../types.js';
export declare function useTimes(props: {
now: string | undefined;
}): {
times: {
now: {
date: string;
time: string;
year: number;
month: number;
day: number;
weekday: number;
hour: number;
minute: number;
hasDay: boolean;
hasTime: boolean;
past: boolean;
present: boolean;
future: boolean;
category?: import("../types.js").CalendarCategory;
};
today: {
date: string;
time: string;
year: number;
month: number;
day: number;
weekday: number;
hour: number;
minute: number;
hasDay: boolean;
hasTime: boolean;
past: boolean;
present: boolean;
future: boolean;
category?: import("../types.js").CalendarCategory;
};
};
parsedNow: import("vue").ComputedRef<CalendarTimestamp | null>;
updateTimes: () => void;
setPresent: () => void;
getNow: () => CalendarTimestamp;
updateDay: (now: CalendarTimestamp, target: CalendarTimestamp) => void;
updateTime: (now: CalendarTimestamp, target: CalendarTimestamp) => void;
};