elcrm 0.8.93 → 0.8.95

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.
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Группировка массива по ключу или функции
3
+ *
4
+ * @param {Array} a - array
5
+ * @param {string} k - key
6
+ */
7
+ export default function (a: any, k: string | Function): any;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Сортировка массива
3
+ *
4
+ * @param {Array} a - array
5
+ * @param {string} k - key
6
+ * @param {boolean} r - reverse
7
+ */
8
+ export default function (a: any, k: string, r?: boolean): any;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Сортировка массива по дате
3
+ *
4
+ * @param {Array} a - array
5
+ * @param {string} k - key
6
+ * @param {boolean} r - reverse
7
+ */
8
+ export default function (a: any, k: string, r?: boolean): any;
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Сумма массива
3
+ *
4
+ * @param {Array} a - array
5
+ * @param {string} k - key
6
+ */
7
+ export default function (a: any, k: string): any;
@@ -0,0 +1 @@
1
+ export default function (w: string): string;
@@ -16,9 +16,19 @@ 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';
19
24
 
20
25
  declare const _default: {
21
26
  Age: typeof Age;
27
+ ArraySort: typeof ArraySort;
28
+ ArrayGroup: typeof ArrayGroup;
29
+ ArraySortDate: typeof ArraySortDate;
30
+ ArraySumma: typeof ArraySumma;
31
+ Translit: typeof Translit;
22
32
  Date: typeof Date;
23
33
  MoneyString: (num: any) => string | false;
24
34
  DateSort: typeof DateSort;