elcrm 0.8.94 → 0.8.96
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/Format/ArrayGroup.d.ts +7 -0
- package/dist/Format/ArraySort.d.ts +8 -0
- package/dist/Format/ArraySortDate.d.ts +8 -0
- package/dist/Format/ArraySortFunction.d.ts +9 -0
- package/dist/Format/ArraySumma.d.ts +7 -0
- package/dist/Format/Translit.d.ts +1 -0
- package/dist/Format/index.d.ts +12 -0
- package/dist/index.es.js +1461 -1360
- package/dist/index.umd.js +9 -9
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (w: string): string;
|
package/dist/Format/index.d.ts
CHANGED
|
@@ -16,9 +16,21 @@ import { default as Week } from './Week';
|
|
|
16
16
|
import { default as ObjectByArray } from './ObjectByArray';
|
|
17
17
|
import { default as Age } from './Age';
|
|
18
18
|
import { default as isNumeric } from './isNumeric';
|
|
19
|
+
import { default as Translit } from './Translit';
|
|
20
|
+
import { default as ArraySort } from './ArraySort';
|
|
21
|
+
import { default as ArrayGroup } from './ArrayGroup';
|
|
22
|
+
import { default as ArraySortDate } from './ArraySortDate';
|
|
23
|
+
import { default as ArraySumma } from './ArraySumma';
|
|
24
|
+
import { default as ArraySortFunction } from './ArraySortFunction';
|
|
19
25
|
|
|
20
26
|
declare const _default: {
|
|
21
27
|
Age: typeof Age;
|
|
28
|
+
ArraySort: typeof ArraySort;
|
|
29
|
+
ArrayGroup: typeof ArrayGroup;
|
|
30
|
+
ArraySortDate: typeof ArraySortDate;
|
|
31
|
+
ArraySortFunction: typeof ArraySortFunction;
|
|
32
|
+
ArraySumma: typeof ArraySumma;
|
|
33
|
+
Translit: typeof Translit;
|
|
22
34
|
Date: typeof Date;
|
|
23
35
|
MoneyString: (num: any) => string | false;
|
|
24
36
|
DateSort: typeof DateSort;
|