8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
/**
|
|
* Start of day
|
|
*
|
|
* @param {Date} date - The original date
|
|
* @returns {Date} The start of the day
|
|
*/
|
|
export declare function startOfDay(date: Date): Date;
|