@smart100/spu-web-plugin 0.0.2 → 0.0.4

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 @@
1
+ # @smart100/spu-web-plugin
@@ -0,0 +1,28 @@
1
+ import type { App } from 'vue'
2
+ // import type { AxiosInstance } from 'axios'
3
+
4
+ interface SPUWebPluginOptions {
5
+ modulekey: string;
6
+ modulename: string;
7
+ moduleversion: string;
8
+ router: any;
9
+ }
10
+
11
+ export const lsProxy: any
12
+ export const ssProxy: any
13
+ export const getLocation: any
14
+ export const getDistance: any
15
+ export const spuAxios: any
16
+ // export const spuAxios: AxiosInstance
17
+ export const apaasAxios: any
18
+ export const downloadService: any
19
+ export const uploadService: any
20
+
21
+
22
+ interface ISPUWebPlugin {
23
+ install (app: App, option: SPUWebPluginOptions): void
24
+ // install: any
25
+ version: string
26
+ }
27
+ declare const SPUWebPlugin: ISPUWebPlugin
28
+ export default SPUWebPlugin