pangea-helpers 1.3.62 → 1.3.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,12 +5,12 @@ type AdjustDateConfig = {
|
|
|
5
5
|
};
|
|
6
6
|
export declare function adjustDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
7
7
|
export declare function getCurrentYearStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
8
|
-
export declare function getPreviousYearStartDate(date?: Date): Date;
|
|
9
|
-
export declare function getNextYearStartDate(date?: Date): Date;
|
|
8
|
+
export declare function getPreviousYearStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
9
|
+
export declare function getNextYearStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
10
10
|
export declare function getCurrentMonthStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
11
|
-
export declare function getPreviousMonthStartDate(date?: Date): Date;
|
|
12
|
-
export declare function getNextMonthStartDate(date?: Date): Date;
|
|
11
|
+
export declare function getPreviousMonthStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
12
|
+
export declare function getNextMonthStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
13
13
|
export declare function getCurrentDayStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
14
|
-
export declare function getPreviousDayStartDate(date?: Date): Date;
|
|
15
|
-
export declare function getNextDayStartDate(date?: Date): Date;
|
|
14
|
+
export declare function getPreviousDayStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
15
|
+
export declare function getNextDayStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
16
16
|
export {};
|