export-table-pulgin-csharp 1.0.6 → 1.0.7

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.d.ts CHANGED
@@ -5,4 +5,5 @@ export declare class ExportPlugin extends PluginBase {
5
5
  tags: string[];
6
6
  handleSheet(paras: HandleSheetParams): string | null;
7
7
  }
8
+ export declare const ExportPlugins: ExportPlugin[];
8
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAGlG,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CA+JpE;AAED,qBAAa,YAAa,SAAQ,UAAU;IAC3C,IAAI,SAAW;IACf,IAAI,EAAE,MAAM,EAAE,CAAS;IAEvB,WAAW,CAAC,KAAK,EAAE,iBAAiB;CAOpC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAGlG,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CA+JpE;AAED,qBAAa,YAAa,SAAQ,UAAU;IAC3C,IAAI,SAAW;IACf,IAAI,EAAE,MAAM,EAAE,CAAS;IAEvB,WAAW,CAAC,KAAK,EAAE,iBAAiB;CAOpC;AAED,eAAO,MAAM,aAAa,gBAEzB,CAAA"}
package/dist/index.js CHANGED
@@ -19,7 +19,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
19
19
  return result;
20
20
  };
21
21
  Object.defineProperty(exports, "__esModule", { value: true });
22
- exports.ExportPlugin = exports.export_stuff = void 0;
22
+ exports.ExportPlugins = exports.ExportPlugin = exports.export_stuff = void 0;
23
23
  const windy_quicktable_1 = require("windy-quicktable");
24
24
  const fs = __importStar(require("fs"));
25
25
  function export_stuff(paras) {
@@ -193,3 +193,6 @@ class ExportPlugin extends windy_quicktable_1.PluginBase {
193
193
  }
194
194
  }
195
195
  exports.ExportPlugin = ExportPlugin;
196
+ exports.ExportPlugins = [
197
+ new ExportPlugin(),
198
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "export-table-pulgin-csharp",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -175,3 +175,7 @@ export class ExportPlugin extends PluginBase {
175
175
  return content
176
176
  }
177
177
  }
178
+
179
+ export const ExportPlugins = [
180
+ new ExportPlugin(),
181
+ ]