export-table-pulgin-csharp 1.1.93 → 1.1.95
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/ExportCSPlugin.js +1 -1
- package/package.json +1 -1
- package/src/ExportCSPlugin.ts +1 -1
package/dist/ExportCSPlugin.js
CHANGED
|
@@ -284,7 +284,7 @@ function export_stuff(paras) {
|
|
|
284
284
|
let type1 = m[1];
|
|
285
285
|
let type2 = m[2];
|
|
286
286
|
let isArray = m[3] != null;
|
|
287
|
-
let line = `public Tuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${convMemberName(f.name)}Obj;`;
|
|
287
|
+
let line = `public System.Tuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${convMemberName(f.name)}Obj;`;
|
|
288
288
|
return line;
|
|
289
289
|
}
|
|
290
290
|
else {
|
package/package.json
CHANGED
package/src/ExportCSPlugin.ts
CHANGED
|
@@ -229,7 +229,7 @@ export function export_stuff(paras: HandleSheetParams): string | null {
|
|
|
229
229
|
let type1 = m[1]
|
|
230
230
|
let type2 = m[2]
|
|
231
231
|
let isArray = m[3] != null
|
|
232
|
-
let line = `public Tuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${convMemberName(f.name)}Obj;`
|
|
232
|
+
let line = `public System.Tuple<${type1}, ${type2}>${isArray ? "[]" : ""} ${convMemberName(f.name)}Obj;`
|
|
233
233
|
return line;
|
|
234
234
|
} else {
|
|
235
235
|
return `public ${line0} ${convMemberName(f.name)}Obj;`
|