From 1525f0944e58c499da7e2ebe9778d72c929a1930 Mon Sep 17 00:00:00 2001 From: qiang Date: Wed, 26 Oct 2022 21:10:04 +0800 Subject: [PATCH] feat: uni-usercapturescreen support weixin --- .../uni-usercapturescreen/utssdk/mp-weixin/index.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 uni_modules/uni-usercapturescreen/utssdk/mp-weixin/index.js diff --git a/uni_modules/uni-usercapturescreen/utssdk/mp-weixin/index.js b/uni_modules/uni-usercapturescreen/utssdk/mp-weixin/index.js new file mode 100644 index 0000000..6aa57b3 --- /dev/null +++ b/uni_modules/uni-usercapturescreen/utssdk/mp-weixin/index.js @@ -0,0 +1,7 @@ +export function onUserCaptureScreen (callback) { + return wx.onUserCaptureScreen(callback) +} + +export function offUserCaptureScreen (callback) { + return wx.offUserCaptureScreen(callback) +} -- GitLab