/** * 一些可能会用到的常量 * @filename packages/utils/src/envs/index.ts * @author Mr Prince * @date 2022-06-19 19:19:48 */ /** * @public * * 判断是否是浏览器环境 */ export declare const isBrowser: () => boolean; /** * @public * * 判断是否是 Node.js 环境 */ export declare const isNodejs: () => boolean;