press-ui
Version:
简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目
32 lines (25 loc) • 353 B
JavaScript
// @ts-check
/**
* @typedef {import("tim-js-sdk").default} TIM_TYPE
*/
// #ifdef H5
// @ts-ignore
import TIM_WEB from 'tim-js-sdk';
// #endif
// #ifndef H5
// @ts-ignore
import TIM_MP from 'tim-wx-sdk';
// #endif
/**
* @type {TIM_TYPE}
*/
let TIM;
// #ifdef H5
TIM = TIM_WEB;
// #endif
// #ifndef H5
TIM = TIM_MP;
// #endif
export {
TIM,
};