@zhangqingcq/vgce 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +3 -2
  2. package/types/index.d.ts +11 -0
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@zhangqingcq/vgce",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Vector graphics configure editor. svg组态编辑器。基于vue3.3+ts+element-plus+vite",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "files": [
9
- "dist"
9
+ "dist",
10
+ "types"
10
11
  ],
11
12
  "main": "./dist/vgce.umd.cjs",
12
13
  "module": "./dist/vgce.js",
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @description vgce 声明文件入口
3
+ * @author Ricky email:zhangqingcq@foxmail.com
4
+ * @created 2023.07.10
5
+ */
6
+
7
+ import type { App } from 'vue'
8
+ declare const _default: {
9
+ install: (app: App<any>, options?: Record<string, any>) => void
10
+ }
11
+ export default _default