1mpacto-react-ui 0.0.134 → 0.0.135
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.cjs +57 -57
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +5191 -5190
- package/dist/index.mjs.map +1 -1
- package/dist/src/utils/common.d.ts +4 -0
- package/package.json +1 -1
@@ -58,3 +58,7 @@ export declare const transformNumber: (val: string) => number;
|
|
58
58
|
export declare const transformBigNumber: (val: TBigNumber) => string;
|
59
59
|
export declare const transfromIsNan: (value: number) => number | undefined;
|
60
60
|
export declare const setDigit: (value: number | string) => string | 0 | null;
|
61
|
+
export declare function parseFileName(fileName: string): {
|
62
|
+
filename: string;
|
63
|
+
extension: string;
|
64
|
+
};
|
package/package.json
CHANGED