UNPKG

common-function-utils

Version:
20 lines (19 loc) 444 B
/** * 设备操作系统类型及其版本 * @category Device */ export interface systemInfoType { /** * 系统类型,如 "windows""macOS""linux""android""ios""darwin" */ system?: string; /** * 系统类型对应版本,如"10.15.7" */ systemVersion?: string; } /** * 设备操作系统信息及其版本 * @category Device */ export default function systemInfo(): systemInfoType;