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