tsp-component
Version:
提供多端和react版本的UI组件
26 lines (24 loc) • 434 B
text/typescript
declare const process: {
env: {
NODE_ENV: string;
}
};
const userAgent = navigator.userAgent;
/**
* ios终端
*/
const isiOS = !!userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
/**
* 设备宽度
*/
const deviceWidth = document.body.clientWidth;
/**
* 设备高度
*/
const deviceHeight = document.documentElement.clientHeight;
export {
userAgent,
isiOS,
deviceWidth,
deviceHeight
};