elcrm 0.8.18 → 0.8.20
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/ObjectByArray.d.ts +1 -0
- package/dist/Format/index.d.ts +2 -0
- package/dist/index.es.js +284 -277
- package/dist/index.umd.js +7 -7
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (a: [any], k: any): any;
|
package/dist/Format/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { default as Percent } from './Percent';
|
|
|
11
11
|
import { default as CapitalizeFirstLetter } from './CapitalizeFirstLetter';
|
|
12
12
|
import { default as DeclensionWord } from './DeclensionWord';
|
|
13
13
|
import { default as Select } from './Select';
|
|
14
|
+
import { default as ObjectByArray } from './ObjectByArray';
|
|
14
15
|
|
|
15
16
|
declare const _default: {
|
|
16
17
|
Date: typeof Date;
|
|
@@ -27,5 +28,6 @@ declare const _default: {
|
|
|
27
28
|
CapitalizeFirstLetter: typeof CapitalizeFirstLetter;
|
|
28
29
|
DeclensionWord: typeof DeclensionWord;
|
|
29
30
|
Select: typeof Select;
|
|
31
|
+
ObjectByArray: typeof ObjectByArray;
|
|
30
32
|
};
|
|
31
33
|
export default _default;
|