@elcrm/telegram 0.0.52 → 0.0.54
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/ColorBackground.d.ts +8 -0
- package/dist/Format/Money.d.ts +1 -1
- package/dist/Format/Month.d.ts +1 -1
- package/dist/Format/SelectParams.d.ts +1 -0
- package/dist/Format/Translit.d.ts +1 -0
- package/dist/Format/index.d.ts +2 -35
- package/dist/Format/isNumeric.d.ts +1 -0
- package/dist/index.es.js +1351 -1223
- package/dist/index.umd.js +10 -10
- package/package.json +1 -1
package/dist/Format/Money.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function (n: any): string;
|
|
1
|
+
export default function (n: any, d?: number): string;
|
package/dist/Format/Month.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (type: string, id: number | string, p: string, unknown?: string): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (w: string): string;
|
package/dist/Format/index.d.ts
CHANGED
|
@@ -1,35 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { default as Size } from './Size';
|
|
4
|
-
import { default as TypeFiles } from './TypeFiles';
|
|
5
|
-
import { default as Cases } from './Cases';
|
|
6
|
-
import { default as Initials } from './Initials';
|
|
7
|
-
import { default as Month } from './Month';
|
|
8
|
-
import { default as Money } from './Money';
|
|
9
|
-
import { default as Number } from './Number';
|
|
10
|
-
import { default as Percent } from './Percent';
|
|
11
|
-
import { default as CapitalizeFirstLetter } from './CapitalizeFirstLetter';
|
|
12
|
-
import { default as DeclensionWord } from './DeclensionWord';
|
|
13
|
-
import { default as Select } from './Select';
|
|
14
|
-
import { default as ObjectByArray } from './ObjectByArray';
|
|
15
|
-
import { default as Age } from './Age';
|
|
16
|
-
|
|
17
|
-
declare const _default: {
|
|
18
|
-
Age: typeof Age;
|
|
19
|
-
Date: typeof Date;
|
|
20
|
-
MoneyString: (num: any) => string | false;
|
|
21
|
-
DateSort: typeof DateSort;
|
|
22
|
-
Size: typeof Size;
|
|
23
|
-
TypeFiles: typeof TypeFiles;
|
|
24
|
-
Cases: typeof Cases;
|
|
25
|
-
Initials: typeof Initials;
|
|
26
|
-
Month: typeof Month;
|
|
27
|
-
Money: typeof Money;
|
|
28
|
-
Number: typeof Number;
|
|
29
|
-
Percent: typeof Percent;
|
|
30
|
-
CapitalizeFirstLetter: typeof CapitalizeFirstLetter;
|
|
31
|
-
DeclensionWord: typeof DeclensionWord;
|
|
32
|
-
Select: typeof Select;
|
|
33
|
-
ObjectByArray: typeof ObjectByArray;
|
|
34
|
-
};
|
|
35
|
-
export default _default;
|
|
1
|
+
declare const u: any;
|
|
2
|
+
export default u;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (s: any): Boolean;
|