@osovitny/anatoly 3.17.0 → 3.17.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,6 +1,5 @@
|
|
|
1
1
|
export declare class Convert {
|
|
2
2
|
private static pad;
|
|
3
|
-
static toLocalizedDateTime(value: Date): Date | null;
|
|
4
3
|
static enumToString(enumeration: any, value: any): string;
|
|
5
4
|
static enumToArray(enumeration: any, valueAsInt?: boolean, notIncludes?: any): {
|
|
6
5
|
value: number;
|
|
@@ -13,7 +12,8 @@ export declare class Convert {
|
|
|
13
12
|
static stringToIntArray(str: string, separator?: string): number[];
|
|
14
13
|
static company2String(comp: any): string;
|
|
15
14
|
static address2String(adr: any): string;
|
|
16
|
-
static dateToString(date: any): string;
|
|
17
|
-
static utcDateToLocalDate(d: any): Date;
|
|
18
15
|
static stringToBoolean(value: any): boolean;
|
|
16
|
+
static utcToLocalDate(value: Date): Date | null;
|
|
17
|
+
static utcToLocalDateTime(value: Date): Date | null;
|
|
18
|
+
static dateToString(date: any): string;
|
|
19
19
|
}
|