export-table-pulgin-csharp 1.1.120 → 1.1.122
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/CSParseTool.js
CHANGED
|
@@ -257,7 +257,7 @@ const convTupleArrayType = (f) => {
|
|
|
257
257
|
let type1 = m[1];
|
|
258
258
|
let type2 = m[2];
|
|
259
259
|
let isArray = m[3] != null;
|
|
260
|
-
let line = `public
|
|
260
|
+
let line = `public WritableValueTuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${(0, exports.convMemberName)(f.name)}Obj;`;
|
|
261
261
|
return line;
|
|
262
262
|
}
|
|
263
263
|
else {
|
package/package.json
CHANGED
package/src/CSParseTool.ts
CHANGED
|
@@ -204,7 +204,7 @@ export const convTupleArrayType = (f: Field) => {
|
|
|
204
204
|
let type1 = m[1]
|
|
205
205
|
let type2 = m[2]
|
|
206
206
|
let isArray = m[3] != null
|
|
207
|
-
let line = `public
|
|
207
|
+
let line = `public WritableValueTuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${convMemberName(f.name)}Obj;`
|
|
208
208
|
return line;
|
|
209
209
|
} else {
|
|
210
210
|
return `public ${line0} ${convMemberName(f.name)}Obj;`
|