@accitdg/web-helpers 0.0.18 → 0.0.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/index.d.ts +29 -0
- package/package.json +1 -1
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export function convertNumberToCurrency(...args: any[]): any;
|
|
2
|
+
export function arrayBufferToBase64(...args: any[]): any;
|
|
3
|
+
export function cleanBase64(...args: any[]): any;
|
|
4
|
+
export function downloadBase64File(...args: any[]): any;
|
|
5
|
+
export function restoreBase64(...args: any[]): any;
|
|
6
|
+
export function getFileExtensionFromBase64(...args: any[]): any;
|
|
7
|
+
export function configureHelpers(...args: any[]): any;
|
|
8
|
+
export function createPayload(...args: any[]): any;
|
|
9
|
+
export function createPayload2(...args: any[]): any;
|
|
10
|
+
export function formatNumberWithCommas(...args: any[]): any;
|
|
11
|
+
export function titleCase(...args: any[]): any;
|
|
12
|
+
export function maskFormatPhilippineNumber(...args: any[]): any;
|
|
13
|
+
|
|
14
|
+
declare const _default: {
|
|
15
|
+
convertNumberToCurrency: typeof convertNumberToCurrency;
|
|
16
|
+
arrayBufferToBase64: typeof arrayBufferToBase64;
|
|
17
|
+
cleanBase64: typeof cleanBase64;
|
|
18
|
+
downloadBase64File: typeof downloadBase64File;
|
|
19
|
+
restoreBase64: typeof restoreBase64;
|
|
20
|
+
getFileExtensionFromBase64: typeof getFileExtensionFromBase64;
|
|
21
|
+
configureHelpers: typeof configureHelpers;
|
|
22
|
+
createPayload: typeof createPayload;
|
|
23
|
+
createPayload2: typeof createPayload2;
|
|
24
|
+
formatNumberWithCommas: typeof formatNumberWithCommas;
|
|
25
|
+
titleCase: typeof titleCase;
|
|
26
|
+
maskFormatPhilippineNumber: typeof maskFormatPhilippineNumber;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export default _default;
|