pangea-helpers 1.3.89 → 1.3.90
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.
|
@@ -13,7 +13,11 @@ export declare function getNextMonthStartDate(date?: Date, config?: AdjustDateCo
|
|
|
13
13
|
export declare function getCurrentDayStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
14
14
|
export declare function getPreviousDayStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
15
15
|
export declare function getNextDayStartDate(date?: Date, config?: AdjustDateConfig): Date;
|
|
16
|
+
export declare function getWeekday(date: string): number;
|
|
16
17
|
export declare const timezoneOffsets: string[];
|
|
17
18
|
export declare function getTimezoneOffset(date?: Date): string;
|
|
19
|
+
export declare function getTimezoneOffsetMs(date: Date, timezone: string): number;
|
|
18
20
|
export declare function getTimezone(): string;
|
|
21
|
+
export declare function getDateStrInTimezone(date: Date, timezone: string): string;
|
|
22
|
+
export declare function getZonedDatetime(date: string, minutes: number, timezone: string): Date;
|
|
19
23
|
export {};
|