We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6f3662 commit 541c18aCopy full SHA for 541c18a
package.json
@@ -30,6 +30,7 @@
30
"element-ui form",
31
"el-form"
32
],
33
+ "types": "./types/index.d.ts",
34
"dependencies": {
35
"dayjs": "^1.8.15",
36
"is-number": "^7.0.0",
types/index.d.ts
@@ -0,0 +1,11 @@
1
+declare module 'vue-ele-form' {
2
+ import Vue, { PluginFunction, PluginObject } from 'vue';
3
+ class EleForm implements PluginObject<{}> {
4
+ [key: string]: any;
5
+ public install: PluginFunction<{}>;
6
+ }
7
+
8
+ const VuePlugin: EleForm;
9
10
+ export default VuePlugin;
11
+}
0 commit comments