@lxlib/util
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.
11 lines (10 loc) • 464 B
TypeScript
/**
* 获取时间范围
* @param type 类型,带 `-` 表示过去一个时间,若指定 `number` 表示天数
* @param time 开始时间
*/
export declare function getTimeDistance(type: 'today' | '-today' | 'yesterday' | 'week' | '-week' | 'month' | '-month' | 'year' | '-year' | number, time?: Date | string | number): [Date, Date];
/**
* fix time is the most, big value
*/
export declare function fixEndTimeOfRange(dates: [Date, Date]): [Date, Date];