@react-pakistan/util-functions 1.24.24 → 1.24.25
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/constants/currencies.d.ts +12 -0
- package/constants/currencies.js +1077 -0
- package/constants/index.d.ts +1 -0
- package/constants/index.js +1 -0
- package/general/currencies.d.ts +0 -14
- package/general/currencies.js +1077 -1075
- package/general/index.d.ts +0 -1
- package/general/index.js +0 -1
- package/package.json +1 -1
package/constants/index.d.ts
CHANGED
package/constants/index.js
CHANGED
|
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./api-methods"), exports);
|
|
18
18
|
__exportStar(require("./countries-timezones"), exports);
|
|
19
|
+
__exportStar(require("./currencies"), exports);
|
|
19
20
|
__exportStar(require("./layout-direction"), exports);
|
|
20
21
|
__exportStar(require("./react-pakistan"), exports);
|
|
21
22
|
__exportStar(require("./react-pakistan-meta"), exports);
|
package/general/currencies.d.ts
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* A util library of worldwide currencies
|
|
3
|
-
*
|
|
4
|
-
* @returns an object of selected currency
|
|
5
|
-
* @author Taimoor Khan
|
|
6
|
-
* @remarks
|
|
7
|
-
*/
|
|
8
|
-
/** End file docs */
|
|
9
|
-
export interface ICurrency {
|
|
10
|
-
[key: string]: {
|
|
11
|
-
[key: string]: string | number;
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
export declare const currencies: ICurrency;
|