@meetelise/chat 1.43.28 → 1.43.30
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.
package/dist/src/utils.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare const isMobile: () => boolean;
|
|
|
4
4
|
export declare const isTimestampExpired: (timestamp: Date, ttlHours: number) => boolean;
|
|
5
5
|
export declare const getCookieValue: (name: string) => string | null;
|
|
6
6
|
export declare const isValidPhoneNumber: (phoneNumber: string) => boolean;
|
|
7
|
+
export declare const isValidEmail: (email: string) => boolean;
|
|
7
8
|
export declare const isContainingEmail: (message: string) => boolean;
|
|
8
9
|
export declare const sentenceTitleCase: (str: string) => string;
|
|
9
10
|
export declare const formatCurrency: (amount: number, maximumFractionDigits?: number) => string;
|