首次完整推送,
V:1.20240808.006
This commit is contained in:
80
uni_modules/uni-installApk/utssdk/interface.uts
Normal file
80
uni_modules/uni-installApk/utssdk/interface.uts
Normal file
@ -0,0 +1,80 @@
|
||||
export interface Uni {
|
||||
/**
|
||||
* installApk()
|
||||
* @description
|
||||
* 安装apk
|
||||
* @param {InstallApkOptions}
|
||||
* @return {void}
|
||||
* @uniPlatform {
|
||||
* "app": {
|
||||
* "android": {
|
||||
* "osVer": "5.0",
|
||||
* "uniVer": "3.94+",
|
||||
* "unixVer": "3.94+"
|
||||
* },
|
||||
* "ios": {
|
||||
* "osVer": "x",
|
||||
* "uniVer": "x",
|
||||
* "unixVer": "x"
|
||||
* }
|
||||
* },
|
||||
* "web": {
|
||||
* "uniVer": "x",
|
||||
* "unixVer": "x"
|
||||
* }
|
||||
* }
|
||||
* @example
|
||||
```typescript
|
||||
uni.installApk({
|
||||
filePath: "/xx/xx/xx.apk",
|
||||
complete: (res: any) => {
|
||||
console.log("complete => " + JSON.stringify(res));
|
||||
}
|
||||
});
|
||||
```
|
||||
*/
|
||||
installApk(options : InstallApkOptions) : void
|
||||
}
|
||||
export type InstallApkSuccess = {
|
||||
/**
|
||||
* 安装成功消息
|
||||
*/
|
||||
errMsg : string
|
||||
}
|
||||
export type InstallApkComplete = any
|
||||
export type InstallApkSuccessCallback = (res : InstallApkSuccess) => void
|
||||
/**
|
||||
* 错误码
|
||||
* - 1300002 找不到文件
|
||||
*/
|
||||
export type InstallApkErrorCode = 1300002
|
||||
/**
|
||||
* 网络请求失败的错误回调参数
|
||||
*/
|
||||
export interface InstallApkFail extends IUniError {
|
||||
errCode : InstallApkErrorCode
|
||||
};
|
||||
export type InstallApkFailCallback = (err : InstallApkFail) => void
|
||||
export type InstallApkCompleteCallback = (res : InstallApkComplete) => void
|
||||
|
||||
export type InstallApkOptions = {
|
||||
/**
|
||||
* apk文件地址
|
||||
*/
|
||||
filePath : string,
|
||||
/**
|
||||
* 接口调用成功的回调函数
|
||||
* @defaultValue null
|
||||
*/
|
||||
success ?: InstallApkSuccessCallback | null,
|
||||
/**
|
||||
* 接口调用失败的回调函数
|
||||
* @defaultValue null
|
||||
*/
|
||||
fail ?: InstallApkFailCallback | null,
|
||||
/**
|
||||
* 接口调用结束的回调函数(调用成功、失败都会执行)
|
||||
* @defaultValue null
|
||||
*/
|
||||
complete ?: InstallApkCompleteCallback | null
|
||||
}
|
Reference in New Issue
Block a user