Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 1x 1x | function getSystemInfo(): any { const mock = { "screenWidth": 1280, "screenHeight": 800, "pixelRatio": 1.25, "platform": "Android", "system": "6.1.8-D-20201202.2128", "version": "1.1.191", "versionCode": 191, "app": "com.alibaba.genie.waft", "sdkVersion": "0.3", "sdkVersionCode": 3, "model": "AILABS_S3", "brand": "alps" } return JSON.stringify(mock); } function getCurrentTimeMillisSync(): number { return Date.now(); } export default { getSystemInfo, getCurrentTimeMillisSync } |