@fsystem/fswt-ui-tools 0.3.4 → 0.3.5
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/types/index.d.ts +15 -0
- package/package.json +1 -1
- package/dist/types/tools/index.d.ts +0 -15
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * as PeTools from './tools/pe/MicrosoftPeFileVersion';
|
|
2
|
+
export * as ArrayTools from './tools/Array';
|
|
3
|
+
export * as ColorTools from './tools/Color';
|
|
4
|
+
export * as DataTools from './tools/Date';
|
|
5
|
+
export * as ElementTools from './tools/Element';
|
|
6
|
+
export * as ExecTools from './tools/Exec';
|
|
7
|
+
export * as InteractTools from './tools/Interact';
|
|
8
|
+
export * as JudgeTools from './tools/Judge';
|
|
9
|
+
export * as MapTools from './tools/Map';
|
|
10
|
+
export * as NumberTools from './tools/Number';
|
|
11
|
+
export * as ObjectTools from './tools/Object';
|
|
12
|
+
export * as PathTools from './tools/Path';
|
|
13
|
+
export { default as StorageTools } from './tools/Storage';
|
|
14
|
+
export * as StringTools from './tools/String';
|
|
15
|
+
export * as UtilTools from './tools/Util';
|
package/package.json
CHANGED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export * as PeTools from './pe/MicrosoftPeFileVersion';
|
|
2
|
-
export * as ArrayTools from './Array';
|
|
3
|
-
export * as ColorTools from './Color';
|
|
4
|
-
export * as DataTools from './Date';
|
|
5
|
-
export * as ElementTools from './Element';
|
|
6
|
-
export * as ExecTools from './Exec';
|
|
7
|
-
export * as InteractTools from './Interact';
|
|
8
|
-
export * as JudgeTools from './Judge';
|
|
9
|
-
export * as MapTools from './Map';
|
|
10
|
-
export * as NumberTools from './Number';
|
|
11
|
-
export * as ObjectTools from './Object';
|
|
12
|
-
export * as PathTools from './Path';
|
|
13
|
-
export { default as StorageTools } from './Storage';
|
|
14
|
-
export * as StringTools from './String';
|
|
15
|
-
export * as UtilTools from './Util';
|