@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 +1 -0
- package/dist/index.d.ts +28 -0
- package/dist/spu-web-plugin.mjs +6 -7548
- package/package.json +6 -7
- package/src/package/ali-oss/aliyun-oss-sdk.js +25121 -25121
- package/src/package/ali-oss/aliyun-oss-sdk.min.js +14 -14
- package/src/package/ali-oss/package.json +162 -162
- package/src/types/index.d.ts +6 -7
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# @smart100/spu-web-plugin
|
package/dist/index.d.ts
ADDED
|
@@ -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
|