@aitianyu.cn/types 0.0.12 → 0.1.0

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.
Files changed (87) hide show
  1. package/dist/lib/{utilities/coding → coding}/Error.js +44 -44
  2. package/dist/lib/{utilities/coding → coding}/Path.js +210 -198
  3. package/dist/lib/{utilities/core → core}/Errors.js +86 -86
  4. package/dist/lib/{utilities/core → core}/Language.js +561 -559
  5. package/dist/lib/{utilities/core → core}/Log.js +112 -108
  6. package/dist/lib/{utilities/core → core}/TypeConvertion.js +25 -25
  7. package/dist/lib/{utilities/core → core}/interface/ITJSON.js +3 -3
  8. package/dist/lib/{utilities/core → core}/interface/ITianyuType.js +3 -3
  9. package/dist/lib/{utilities/core → core}/object/ArrayHelper.js +35 -35
  10. package/dist/lib/core/object/Bytes.js +21 -0
  11. package/dist/lib/{utilities/core → core}/object/Calculater.js +240 -230
  12. package/dist/lib/core/object/DataView.js +23 -0
  13. package/dist/lib/core/object/Integer.js +117 -0
  14. package/dist/lib/core/object/Json.js +35 -0
  15. package/dist/lib/{utilities/core/object/Helper.js → core/object/ObjectHelper.js} +202 -201
  16. package/dist/lib/core/object/StringHelper.js +61 -0
  17. package/dist/lib/{utilities/core → core}/type/TArray.js +8 -7
  18. package/dist/lib/{utilities/core → core}/type/TBoolean.js +7 -7
  19. package/dist/lib/{utilities/core → core}/type/TJSON.js +7 -7
  20. package/dist/lib/{utilities/core → core}/type/TNumber.js +7 -7
  21. package/dist/lib/{utilities/core → core}/type/TObject.js +7 -7
  22. package/dist/lib/{utilities/core → core}/type/TString.js +7 -7
  23. package/dist/lib/index.js +70 -54
  24. package/dist/lib/security/Base32.js +104 -0
  25. package/dist/lib/security/Guid.js +26 -0
  26. package/dist/lib/{utilities/security → security}/Hash.js +16 -15
  27. package/dist/lib/security/QRCode.js +46 -0
  28. package/dist/lib/security/RSA.js +62 -0
  29. package/dist/lib/security/SHA.js +67 -0
  30. package/dist/lib/types/AreaCode.js +269 -269
  31. package/dist/lib/types/Exception.js +19 -19
  32. package/dist/lib/types/Logs.js +20 -20
  33. package/dist/lib/types/Object.js +3 -3
  34. package/dist/lib/types/PathBase.js +109 -109
  35. package/dist/lib/types/Security.js +10 -10
  36. package/dist/lib/types/TMap.js +139 -138
  37. package/dist/lib/types/Types.js +3 -3
  38. package/dist/lib/types/index.js +17 -17
  39. package/dist/types/{utilities/coding → coding}/Error.d.ts +27 -27
  40. package/dist/types/{utilities/coding → coding}/Path.d.ts +61 -61
  41. package/dist/types/{utilities/core → core}/Errors.d.ts +47 -47
  42. package/dist/types/{utilities/core → core}/Language.d.ts +17 -17
  43. package/dist/types/{utilities/core → core}/Log.d.ts +12 -12
  44. package/dist/types/{utilities/core → core}/TypeConvertion.d.ts +2 -2
  45. package/dist/types/{utilities/core → core}/interface/ITJSON.d.ts +5 -5
  46. package/dist/types/{utilities/core → core}/interface/ITianyuType.d.ts +5 -5
  47. package/dist/types/{utilities/core → core}/object/ArrayHelper.d.ts +11 -11
  48. package/dist/types/core/object/Bytes.d.ts +13 -0
  49. package/dist/types/{utilities/core → core}/object/Calculater.d.ts +22 -22
  50. package/dist/types/core/object/DataView.d.ts +11 -0
  51. package/dist/types/core/object/Integer.d.ts +71 -0
  52. package/dist/types/core/object/Json.d.ts +22 -0
  53. package/dist/types/{utilities/core/object/Helper.d.ts → core/object/ObjectHelper.d.ts} +39 -39
  54. package/dist/types/core/object/StringHelper.d.ts +21 -0
  55. package/dist/types/{utilities/core → core}/type/TArray.d.ts +3 -3
  56. package/dist/types/{utilities/core → core}/type/TBoolean.d.ts +3 -3
  57. package/dist/types/{utilities/core → core}/type/TJSON.d.ts +3 -3
  58. package/dist/types/{utilities/core → core}/type/TNumber.d.ts +3 -3
  59. package/dist/types/{utilities/core → core}/type/TObject.d.ts +3 -3
  60. package/dist/types/{utilities/core → core}/type/TString.d.ts +3 -3
  61. package/dist/types/index.d.ts +29 -21
  62. package/dist/types/security/Base32.d.ts +42 -0
  63. package/dist/types/security/Guid.d.ts +4 -0
  64. package/dist/types/{utilities/security → security}/Hash.d.ts +3 -3
  65. package/dist/types/security/QRCode.d.ts +11 -0
  66. package/dist/types/security/RSA.d.ts +68 -0
  67. package/dist/types/security/SHA.d.ts +40 -0
  68. package/dist/types/types/AreaCode.d.ts +135 -135
  69. package/dist/types/types/Exception.d.ts +11 -11
  70. package/dist/types/types/Logs.d.ts +64 -64
  71. package/dist/types/types/Object.d.ts +18 -18
  72. package/dist/types/types/PathBase.d.ts +76 -76
  73. package/dist/types/types/Security.d.ts +23 -23
  74. package/dist/types/types/TMap.d.ts +80 -80
  75. package/dist/types/types/Types.d.ts +25 -25
  76. package/dist/types/types/index.d.ts +9 -9
  77. package/package.json +57 -51
  78. package/dist/lib/utilities/coding/index.js +0 -10
  79. package/dist/lib/utilities/core/index.js +0 -21
  80. package/dist/lib/utilities/core/object/StringHelper.js +0 -22
  81. package/dist/lib/utilities/security/Guid.js +0 -20
  82. package/dist/lib/utilities/security/index.js +0 -8
  83. package/dist/types/utilities/coding/index.d.ts +0 -3
  84. package/dist/types/utilities/core/index.d.ts +0 -6
  85. package/dist/types/utilities/core/object/StringHelper.d.ts +0 -4
  86. package/dist/types/utilities/security/Guid.d.ts +0 -3
  87. package/dist/types/utilities/security/index.d.ts +0 -3
@@ -1,201 +1,202 @@
1
- "use strict";
2
- /**@format */
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.ObjectHelper = void 0;
5
- const Errors_1 = require("../Errors");
6
- /** Object Helper of Tianyu to provide data type checking, objects comparing, validation, data clone and other functions */
7
- class ObjectHelper {
8
- /**
9
- * check whether the specified value does extend from nodejs native type
10
- *
11
- * @param {any} value supported value type of tianyu store
12
- * @returns {boolean} return true if the value is based on type number, string, boolean, function, otherwise false
13
- */
14
- static isSimpleDataType(value) {
15
- if (!!!value)
16
- return true;
17
- const typeofValue = typeof value;
18
- return typeofValue === "boolean" || typeofValue === "string" || typeofValue === "number" || typeofValue === "symbol";
19
- }
20
- /**
21
- * get a deep copy from source
22
- *
23
- * @param {any} sources the specified source value
24
- * @returns {any} return a new value that is independent from sources
25
- */
26
- static clone(source) {
27
- return ObjectHelper._clone(source);
28
- }
29
- static _clone(source) {
30
- if (typeof source === "function") {
31
- throw new Errors_1.ObjectCloneFunctionNotSupportException();
32
- }
33
- // check if source is simple data type, return directly
34
- if (ObjectHelper.isSimpleDataType(source)) {
35
- return source;
36
- }
37
- if (Array.isArray(source)) {
38
- // if is array type
39
- return ObjectHelper._cloneArray(source);
40
- }
41
- // otherwise, source value is a record type
42
- return ObjectHelper._cloneRecordType(source);
43
- }
44
- static _cloneArray(source) {
45
- // create a new array to save result
46
- const result = [];
47
- if (0 === source.length) {
48
- // if source value is empty array, return directly
49
- return result;
50
- }
51
- // loop all the item in the source value and to clone the item
52
- for (const item of source) {
53
- result.push(ObjectHelper._clone(item));
54
- }
55
- return result;
56
- }
57
- static _cloneRecordType(source) {
58
- // get all the record key from source object
59
- const keys = Object.keys(source);
60
- if (0 === keys.length) {
61
- // if the object is empty, return an empty object
62
- return {};
63
- }
64
- const result = {};
65
- // loop all the items in the source object by the key name
66
- for (const keyName of keys) {
67
- const sourceItem = source[keyName];
68
- result[keyName] = ObjectHelper._clone(sourceItem);
69
- }
70
- return result;
71
- }
72
- /**
73
- * Check the object whether can be stringified
74
- *
75
- * @param obj be checked object
76
- * @returns return true is valid, otherwise false
77
- */
78
- static validateSerializable(obj) {
79
- // if type is function, is not invaliable to be string
80
- if (typeof obj === "function") {
81
- return false;
82
- }
83
- // if is simple data type, is valiable
84
- if (ObjectHelper.isSimpleDataType(obj)) {
85
- return true;
86
- }
87
- // if is array, check member
88
- if (Array.isArray(obj)) {
89
- for (const item of obj) {
90
- // contains invalid member, return false
91
- if (!ObjectHelper.validateSerializable(item)) {
92
- return false;
93
- }
94
- }
95
- return true;
96
- }
97
- try {
98
- // if is object, check member
99
- const keys = Object.keys(obj);
100
- for (const keyName of keys) {
101
- const item = obj[keyName];
102
- // contains invalid member, return false
103
- if (!ObjectHelper.validateSerializable(item)) {
104
- return false;
105
- }
106
- }
107
- return true;
108
- }
109
- catch {
110
- // if the object is not an object type, return false
111
- return false;
112
- }
113
- }
114
- /**
115
- * Compare two or more objects are the same or different
116
- *
117
- * @param objs the objects which need to be compared
118
- * @returns same - if all the objects are same, different - if at least one object is not same to other objects
119
- * @description if there are only one parameter or no parameter is provided, same result will be returned
120
- */
121
- static compareObjects(...objs) {
122
- // if objs less than 2, is not comparable
123
- if (objs.length < 2) {
124
- return "same";
125
- }
126
- // if the first obj is simple data type, return different if other objects is not simple obj
127
- // or the type is not totally same.
128
- if (ObjectHelper.isSimpleDataType(objs[0])) {
129
- return ObjectHelper._compareSimpleType(...objs);
130
- }
131
- // if the first obj is array type, check all the objects are array and to do the detail checking
132
- if (Array.isArray(objs[0])) {
133
- return ObjectHelper._compareArrayType(...objs);
134
- }
135
- return ObjectHelper._compareObjectType(...objs);
136
- }
137
- static _compareSimpleType(...objs) {
138
- const firstObjType = typeof objs[0];
139
- for (let i = 1; i < objs.length; ++i) {
140
- if (firstObjType !== typeof objs[i] || objs[0] !== objs[i]) {
141
- return "different";
142
- }
143
- }
144
- return "same";
145
- }
146
- static _compareArrayType(...objs) {
147
- for (let i = 1; i < objs.length; ++i) {
148
- // check the type and array length if the obj is array type
149
- if (!Array.isArray(objs[i]) || objs[i].length !== objs[0].length) {
150
- return "different";
151
- }
152
- }
153
- // loop each item of the array to have a detail checking
154
- for (let j = 0; j < objs[0].length; ++j) {
155
- // create a checking array
156
- const items = [objs[0][j]];
157
- for (let i = 1; i < objs.length; ++i) {
158
- // add all the items of the each object which have the same index
159
- items.push(objs[i][j]);
160
- }
161
- const cmpRes = ObjectHelper.compareObjects(...items);
162
- if (cmpRes !== "same") {
163
- return cmpRes;
164
- }
165
- }
166
- return "same";
167
- }
168
- static _compareObjectType(...objs) {
169
- try {
170
- // other cases, the first obj is not simple obj and array, take checking as object
171
- // start add all the objects keys
172
- const keysOfObjs = [];
173
- keysOfObjs.push(Object.keys(objs[0]));
174
- // firstly, check the types of other objects
175
- for (let i = 1; i < objs.length; ++i) {
176
- keysOfObjs.push(Object.keys(objs[i]));
177
- }
178
- // check the keys are same or different
179
- if (ObjectHelper.compareObjects(...keysOfObjs) !== "same") {
180
- return "different";
181
- }
182
- // compare all the items
183
- for (const key of keysOfObjs[0]) {
184
- const items = [];
185
- for (const obj of objs) {
186
- items.push(obj[key]);
187
- }
188
- // get the items compare result
189
- const cmpRes = ObjectHelper.compareObjects(...items);
190
- if (cmpRes !== "same") {
191
- return cmpRes;
192
- }
193
- }
194
- return "same";
195
- }
196
- catch {
197
- return "different";
198
- }
199
- }
200
- }
201
- exports.ObjectHelper = ObjectHelper;
1
+ "use strict";
2
+ /**@format */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.ObjectHelper = void 0;
5
+ const Errors_1 = require("../Errors");
6
+ /** Object Helper of Tianyu to provide data type checking, objects comparing, validation, data clone and other functions */
7
+ class ObjectHelper {
8
+ /**
9
+ * check whether the specified value does extend from nodejs native type
10
+ *
11
+ * @param {any} value supported value type of tianyu store
12
+ * @returns {boolean} return true if the value is based on type number, string, boolean, function, otherwise false
13
+ */
14
+ static isSimpleDataType(value) {
15
+ if (!!!value) {
16
+ return true;
17
+ }
18
+ const typeofValue = typeof value;
19
+ return typeofValue === "boolean" || typeofValue === "string" || typeofValue === "number" || typeofValue === "symbol";
20
+ }
21
+ /**
22
+ * get a deep copy from source
23
+ *
24
+ * @param {any} sources the specified source value
25
+ * @returns {any} return a new value that is independent from sources
26
+ */
27
+ static clone(source) {
28
+ return ObjectHelper._clone(source);
29
+ }
30
+ static _clone(source) {
31
+ if (typeof source === "function") {
32
+ throw new Errors_1.ObjectCloneFunctionNotSupportException();
33
+ }
34
+ // check if source is simple data type, return directly
35
+ if (ObjectHelper.isSimpleDataType(source)) {
36
+ return source;
37
+ }
38
+ if (Array.isArray(source)) {
39
+ // if is array type
40
+ return ObjectHelper._cloneArray(source);
41
+ }
42
+ // otherwise, source value is a record type
43
+ return ObjectHelper._cloneRecordType(source);
44
+ }
45
+ static _cloneArray(source) {
46
+ // create a new array to save result
47
+ const result = [];
48
+ if (0 === source.length) {
49
+ // if source value is empty array, return directly
50
+ return result;
51
+ }
52
+ // loop all the item in the source value and to clone the item
53
+ for (const item of source) {
54
+ result.push(ObjectHelper._clone(item));
55
+ }
56
+ return result;
57
+ }
58
+ static _cloneRecordType(source) {
59
+ // get all the record key from source object
60
+ const keys = Object.keys(source);
61
+ if (0 === keys.length) {
62
+ // if the object is empty, return an empty object
63
+ return {};
64
+ }
65
+ const result = {};
66
+ // loop all the items in the source object by the key name
67
+ for (const keyName of keys) {
68
+ const sourceItem = source[keyName];
69
+ result[keyName] = ObjectHelper._clone(sourceItem);
70
+ }
71
+ return result;
72
+ }
73
+ /**
74
+ * Check the object whether can be stringified
75
+ *
76
+ * @param obj be checked object
77
+ * @returns return true is valid, otherwise false
78
+ */
79
+ static validateSerializable(obj) {
80
+ // if type is function, is not invaliable to be string
81
+ if (typeof obj === "function") {
82
+ return false;
83
+ }
84
+ // if is simple data type, is valiable
85
+ if (ObjectHelper.isSimpleDataType(obj)) {
86
+ return true;
87
+ }
88
+ // if is array, check member
89
+ if (Array.isArray(obj)) {
90
+ for (const item of obj) {
91
+ // contains invalid member, return false
92
+ if (!ObjectHelper.validateSerializable(item)) {
93
+ return false;
94
+ }
95
+ }
96
+ return true;
97
+ }
98
+ try {
99
+ // if is object, check member
100
+ const keys = Object.keys(obj);
101
+ for (const keyName of keys) {
102
+ const item = obj[keyName];
103
+ // contains invalid member, return false
104
+ if (!ObjectHelper.validateSerializable(item)) {
105
+ return false;
106
+ }
107
+ }
108
+ return true;
109
+ }
110
+ catch /* istanbul ignore next */ {
111
+ // if the object is not an object type, return false
112
+ return false;
113
+ }
114
+ }
115
+ /**
116
+ * Compare two or more objects are the same or different
117
+ *
118
+ * @param objs the objects which need to be compared
119
+ * @returns same - if all the objects are same, different - if at least one object is not same to other objects
120
+ * @description if there are only one parameter or no parameter is provided, same result will be returned
121
+ */
122
+ static compareObjects(...objs) {
123
+ // if objs less than 2, is not comparable
124
+ if (objs.length < 2) {
125
+ return "same";
126
+ }
127
+ // if the first obj is simple data type, return different if other objects is not simple obj
128
+ // or the type is not totally same.
129
+ if (ObjectHelper.isSimpleDataType(objs[0])) {
130
+ return ObjectHelper._compareSimpleType(...objs);
131
+ }
132
+ // if the first obj is array type, check all the objects are array and to do the detail checking
133
+ if (Array.isArray(objs[0])) {
134
+ return ObjectHelper._compareArrayType(...objs);
135
+ }
136
+ return ObjectHelper._compareObjectType(...objs);
137
+ }
138
+ static _compareSimpleType(...objs) {
139
+ const firstObjType = typeof objs[0];
140
+ for (let i = 1; i < objs.length; ++i) {
141
+ if (firstObjType !== typeof objs[i] || objs[0] !== objs[i]) {
142
+ return "different";
143
+ }
144
+ }
145
+ return "same";
146
+ }
147
+ static _compareArrayType(...objs) {
148
+ for (let i = 1; i < objs.length; ++i) {
149
+ // check the type and array length if the obj is array type
150
+ if (!Array.isArray(objs[i]) || objs[i].length !== objs[0].length) {
151
+ return "different";
152
+ }
153
+ }
154
+ // loop each item of the array to have a detail checking
155
+ for (let j = 0; j < objs[0].length; ++j) {
156
+ // create a checking array
157
+ const items = [objs[0][j]];
158
+ for (let i = 1; i < objs.length; ++i) {
159
+ // add all the items of the each object which have the same index
160
+ items.push(objs[i][j]);
161
+ }
162
+ const cmpRes = ObjectHelper.compareObjects(...items);
163
+ if (cmpRes !== "same") {
164
+ return cmpRes;
165
+ }
166
+ }
167
+ return "same";
168
+ }
169
+ static _compareObjectType(...objs) {
170
+ try {
171
+ // other cases, the first obj is not simple obj and array, take checking as object
172
+ // start add all the objects keys
173
+ const keysOfObjs = [];
174
+ keysOfObjs.push(Object.keys(objs[0]));
175
+ // firstly, check the types of other objects
176
+ for (let i = 1; i < objs.length; ++i) {
177
+ keysOfObjs.push(Object.keys(objs[i]));
178
+ }
179
+ // check the keys are same or different
180
+ if (ObjectHelper.compareObjects(...keysOfObjs) !== "same") {
181
+ return "different";
182
+ }
183
+ // compare all the items
184
+ for (const key of keysOfObjs[0]) {
185
+ const items = [];
186
+ for (const obj of objs) {
187
+ items.push(obj[key]);
188
+ }
189
+ // get the items compare result
190
+ const cmpRes = ObjectHelper.compareObjects(...items);
191
+ if (cmpRes !== "same") {
192
+ return cmpRes;
193
+ }
194
+ }
195
+ return "same";
196
+ }
197
+ catch /* istanbul ignore next */ {
198
+ return "different";
199
+ }
200
+ }
201
+ }
202
+ exports.ObjectHelper = ObjectHelper;
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ /**@format */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.StringHelper = void 0;
5
+ class StringHelper {
6
+ static format(source, args) {
7
+ if (!args) {
8
+ return source;
9
+ }
10
+ const argument = Array.isArray(args) ? args : [args];
11
+ return source.replace(/('')|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g, (_match, $1, $2, _$3) => {
12
+ if ($1) {
13
+ return "'";
14
+ }
15
+ else if ($2) {
16
+ return String(argument[parseInt($2, 10)]);
17
+ }
18
+ return "";
19
+ });
20
+ }
21
+ /**
22
+ * @deprecated
23
+ *
24
+ * convert an object to be a string.
25
+ * This is an unsafe function to convert an object to be string. suggest to use stringifySafe to convert object to string.
26
+ *
27
+ * @param src source object
28
+ * @returns target string
29
+ */
30
+ static stringify(data) {
31
+ const type = typeof data;
32
+ if (type === "undefined") {
33
+ return "undefined";
34
+ }
35
+ if (type === "function") {
36
+ throw new Error("Could not stringify a 'function' type object");
37
+ }
38
+ if (type === "string") {
39
+ return data;
40
+ }
41
+ if (type === "bigint" || type === "number" || type === "symbol" || type === "boolean") {
42
+ return data.toString();
43
+ }
44
+ return JSON.stringify(data);
45
+ }
46
+ /**
47
+ * convert an object to be a string safty. empty string will be return when error occurs in converting
48
+ *
49
+ * @param src source object
50
+ * @returns target string
51
+ */
52
+ static stringifySafe(data) {
53
+ try {
54
+ return StringHelper.stringify(data);
55
+ }
56
+ catch {
57
+ return "";
58
+ }
59
+ }
60
+ }
61
+ exports.StringHelper = StringHelper;
@@ -1,7 +1,8 @@
1
- "use strict";
2
- /** @format */
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.TArray = void 0;
5
- class TArray {
6
- }
7
- exports.TArray = TArray;
1
+ "use strict";
2
+ /** @format */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.TArray = void 0;
5
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
6
+ class TArray {
7
+ }
8
+ exports.TArray = TArray;
@@ -1,7 +1,7 @@
1
- "use strict";
2
- /** @format */
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.TBoolean = void 0;
5
- class TBoolean {
6
- }
7
- exports.TBoolean = TBoolean;
1
+ "use strict";
2
+ /** @format */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.TBoolean = void 0;
5
+ class TBoolean {
6
+ }
7
+ exports.TBoolean = TBoolean;
@@ -1,7 +1,7 @@
1
- "use strict";
2
- /** @format */
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.TJSON = void 0;
5
- class TJSON {
6
- }
7
- exports.TJSON = TJSON;
1
+ "use strict";
2
+ /** @format */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.TJSON = void 0;
5
+ class TJSON {
6
+ }
7
+ exports.TJSON = TJSON;
@@ -1,7 +1,7 @@
1
- "use strict";
2
- /** @format */
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.TNumber = void 0;
5
- class TNumber {
6
- }
7
- exports.TNumber = TNumber;
1
+ "use strict";
2
+ /** @format */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.TNumber = void 0;
5
+ class TNumber {
6
+ }
7
+ exports.TNumber = TNumber;
@@ -1,7 +1,7 @@
1
- "use strict";
2
- /** @format */
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.TObject = void 0;
5
- class TObject {
6
- }
7
- exports.TObject = TObject;
1
+ "use strict";
2
+ /** @format */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.TObject = void 0;
5
+ class TObject {
6
+ }
7
+ exports.TObject = TObject;
@@ -1,7 +1,7 @@
1
- "use strict";
2
- /** @format */
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.TString = void 0;
5
- class TString {
6
- }
7
- exports.TString = TString;
1
+ "use strict";
2
+ /** @format */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.TString = void 0;
5
+ class TString {
6
+ }
7
+ exports.TString = TString;