spire.officejs-web-excel-ve 1.0.2

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/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # spire.officejs-excel
2
+
3
+ The excel package is one of the products for Spire.OfficeJS. [Spire.ExcelJS](https://www.e-iceblue.com/Introduce/spire-excel-js.html) is a WebAssembly-based Excel engine, delivering advanced formulas, rich visualization, and precise access control.
4
+
5
+ # Installation
6
+ ```bash
7
+ npm install spire.officejs-excel
8
+ ```
9
+
10
+ # Getting more help
11
+ Visit the Spire.OfficeJS home page to get more info about the library: https://www.e-iceblue.com/Introduce/spire-office-js.html
package/index.d.ts ADDED
@@ -0,0 +1,7 @@
1
+
2
+ type Constructor<T = any> = new (...args: any[]) => T;
3
+ declare const SpireOfficejsExcelEditor: Constructor;
4
+
5
+ export default {
6
+ SpireOfficejsExcelEditor: typeof SpireOfficejsExcelEditor
7
+ }
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ const SpireOfficejsExcelEditor = {};
2
+ export default SpireOfficejsExcelEditor;
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "spire.officejs-web-excel-ve",
3
+ "version": "1.0.2",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "typings": "index.d.ts",
7
+ "keywords": [
8
+ "Spire.OfficeJS",
9
+ "Spire.ExcelJS",
10
+ "javascript",
11
+ "javascript excel"
12
+ ],
13
+ "author": "",
14
+ "license": "MIT"
15
+ }