From b6d2f0d809934524ed91f289ccf89bbb26c797e3 Mon Sep 17 00:00:00 2001 From: yanyilin Date: Fri, 24 Mar 2023 19:41:48 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E7=AC=A6=E5=90=88=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=8C=96=E7=94=9F=E6=88=90=E6=B5=8B=E8=AF=95=E7=94=A8?= =?UTF-8?q?=E4=BE=8B=E6=8F=92=E4=BB=B6=E8=A7=84=E8=8C=83=E8=A6=81=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uni-usercapturescreen/utssdk/interface.uts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/uni_modules/uni-usercapturescreen/utssdk/interface.uts b/uni_modules/uni-usercapturescreen/utssdk/interface.uts index 26ba56a..789d191 100644 --- a/uni_modules/uni-usercapturescreen/utssdk/interface.uts +++ b/uni_modules/uni-usercapturescreen/utssdk/interface.uts @@ -19,7 +19,7 @@ export type UserCaptureScreenCallback = (res : OnUserCaptureScreenCallbackResult * * @param {UserCaptureScreenCallback} callback * @tutorial https://uniapp.dcloud.net.cn/api/system/capture-screen.html#onusercapturescreen - * @platforms APP-IOS = ^9.0,APP-ANDROID = ^19 + * @platforms APP-IOS = ^9.0,APP-ANDROID = ^4.4 * @since 3.6.8 */ export type OnUserCaptureScreen = (callback : UserCaptureScreenCallback | null) => void @@ -30,7 +30,7 @@ export type OnUserCaptureScreen = (callback : UserCaptureScreenCallback | null) * * @param {UserCaptureScreenCallback} callback * @tutorial https://uniapp.dcloud.net.cn/api/system/capture-screen.html#offusercapturescreen - * @platforms APP-IOS = ^9.0,APP-ANDROID = ^19 + * @platforms APP-IOS = ^9.0,APP-ANDROID = ^4.4 * @since 3.6.8 */ export type OffUserCaptureScreen = (callback : UserCaptureScreenCallback | null) => void @@ -108,12 +108,12 @@ export type SetUserCaptureScreenOptions = { * * @param {SetUserCaptureScreenOptions} options * @tutorial https://uniapp.dcloud.net.cn/api/system/capture-screen.html#setusercapturescreen - * @platforms APP-IOS = ^9.0,APP-ANDROID = ^19 + * @platforms APP-IOS = ^9.0,APP-ANDROID = ^4.4 * @since 3.7.3 */ export type SetUserCaptureScreen = (options : SetUserCaptureScreenOptions) => void -interface uni { +export interface Uni { onUserCaptureScreen : OnUserCaptureScreen, offUserCaptureScreen : OffUserCaptureScreen, setUserCaptureScreen : SetUserCaptureScreen -- GitLab