@liquidcommerce/elements-sdk 2.1.1-beta.9 → 2.1.1

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.
@@ -1,16 +0,0 @@
1
- export declare function detectUserTimezone(addressState?: string): string;
2
- export declare function getCurrentTimeInTimezone(timezone: string): Date;
3
- export declare function getCurrentTimeInUserTimezone(addressState?: string): Date;
4
- export declare function isDateTimeInRange(options: {
5
- startDate?: Date | string | null;
6
- endDate?: Date | string | null;
7
- addressState?: string;
8
- }): boolean;
9
- export declare function filterActiveItems<T extends {
10
- activeFrom: Date | string;
11
- activeUntil: Date | string;
12
- }>(items: T[], addressState?: string): T[];
13
- export declare function hasActiveItems<T extends {
14
- activeFrom: Date | string;
15
- activeUntil: Date | string;
16
- }>(items: T[], addressState?: string): boolean;