@tb-app/web-view-api
Version:
实现webview与淘宝小程序之间的通信
23 lines (22 loc) • 514 B
TypeScript
/**
* 获取手机系统信息
*/
export default function getSystemInfo(): Promise<{
model: string;
pixelRatio: number;
windowWidth: number;
windowHeight: number;
language: string;
version: string;
storage: string;
currentBattery: string;
system: string;
platform: string;
titleBarHeight: number;
statusBarHeight: number;
screenWidth: number;
screenHeight: number;
brand: string;
fontSizeSetting: number;
app: string;
}>;