common-function-utils
Version:
web和node开发中常用的函数工具。
20 lines (19 loc) • 444 B
TypeScript
/**
* 设备操作系统类型及其版本
* @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;