/** * 判断当前环境是否为PC设备。 * 主要检测设备类型为PC设备。 * * @returns 如果是PC设备,返回true;否则返回false。 */ declare function isPc(): boolean; export default isPc;