UNPKG

@mt-kit/utils

Version:
11 lines (10 loc) 382 B
import type { IDeviceAll, IDeviceAllOptions } from "./types"; /** * 🖥️ 获取所有设备信息 * * 包括同步和异步的所有设备信息 * * @param options 默认都为 true,可以传入 false 来禁用某些功能 * @returns Promise<IDeviceAll> 完整的设备信息对象 */ export default function deviceAll(options?: IDeviceAllOptions): Promise<IDeviceAll>;