Files
hospital-rescue-app-v2/uni_modules/x-screenshot-s/utssdk/web/index.uts
T
2026-09-24 16:25:22 +08:00

12 lines
261 B
Plaintext

/**
* 获取窗口截图
*/
export function getRootShotImage(callback : (str : string) => void) {
callback("")
}
/**
* 获取指定元素截图
*/
export function getElementShotImage(ele:UniElement|null, callback : (str : string) => void) {
callback("")
}