//#region src/date/startOfDay.d.ts /** * Returns a new Date object set to the start of the day (00:00:00.000). * * @param date - The date to modify * @returns A new Date object set to the start of the day * * @example * startOfDay(new Date('2024-01-15T14:30:45.123Z')) * // => Date object for 2024-01-15T00:00:00.000Z */ declare function startOfDay(date: Date): Date; //#endregion export { startOfDay }; //# sourceMappingURL=startOfDay.d.mts.map