spire.officejs-web-pdf-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-pdf
2
+
3
+ The pdf package is one of the products for Spire.OfficeJS.
4
+
5
+ # Installation
6
+ ```bash
7
+ npm install spire.officejs-pdf
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 SpireOfficejsPdfEditor: Constructor;
4
+
5
+ export default {
6
+ SpireOfficejsPdfEditor: typeof SpireOfficejsPdfEditor
7
+ }
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ const SpireOfficejsPdfEditor = {};
2
+ export default SpireOfficejsPdfEditor;
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "spire.officejs-web-pdf-ve",
3
+ "version": "1.0.2",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "typings": "index.d.ts",
7
+ "keywords": [
8
+ "Spire.OfficeJS",
9
+ "Spire.PDFJS",
10
+ "javascript",
11
+ "javascript pdf"
12
+ ],
13
+ "author": "",
14
+ "license": "MIT"
15
+ }