mnswpr/packages/utils/date-bucket/date-bucket.d.ts
2026-07-16 16:10:46 +02:00

8 lines
231 B
TypeScript

export function dayKey(date: Date): string;
export function monthKey(date: Date): string;
export function weekKey(date: Date): string;
export function buckets(date: Date): {
day: string;
week: string;
month: string;
};