wtsk-comps 1.1.5 → 1.1.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/index.d.ts +16 -20
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,29 +1,25 @@
|
|
|
1
|
+
// Type definitions for wtsk-comps - WebStorm compatible
|
|
1
2
|
declare module 'wtsk-comps' {
|
|
2
|
-
import
|
|
3
|
+
import { Component } from 'vue'
|
|
3
4
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export const WtskTree: Component
|
|
5
|
+
const WtskBtn: Component
|
|
6
|
+
const WtskForm: Component
|
|
7
|
+
const WtskTable: Component
|
|
8
|
+
const WtskTree: Component
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
interface WtskBasic {
|
|
12
|
-
install: (app: App) => void
|
|
13
|
-
}
|
|
10
|
+
export { WtskBtn, WtskForm, WtskTable, WtskTree }
|
|
14
11
|
|
|
15
|
-
const WtskBasic:
|
|
12
|
+
const WtskBasic: {
|
|
13
|
+
install: (app: any) => void
|
|
14
|
+
}
|
|
16
15
|
|
|
17
16
|
export default WtskBasic
|
|
18
17
|
}
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
19
|
+
// WebStorm specific declarations
|
|
20
|
+
declare global {
|
|
21
|
+
const WtskBtn: any
|
|
22
|
+
const WtskForm: any
|
|
23
|
+
const WtskTable: any
|
|
24
|
+
const WtskTree: any
|
|
27
25
|
}
|
|
28
|
-
|
|
29
|
-
export {}
|