编排补全uTools接口,新增获取选中文件、图片、文字

This commit is contained in:
fofolee
2025-01-10 22:35:19 +08:00
parent bf5a2306d0
commit e7da2d3a26
7 changed files with 284 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
const getSelected = require("./getSelected");
module.exports = {
getSelectedText: getSelected.text,
getSelectedImage: getSelected.image,
getSelectedFiles: getSelected.files,
};