/** * 根据usercode获取在线用户信息 * @param spaceid 当前项目的spaceid * @param productid 当前项目的productid * @param usercode 用户名 * @example const user=await get_user_info(productid, usercode, cache, force_update_cache); */ export default function get_user_info(productid: string, usercode: string | string[] | undefined | null, cache: boolean, force_update_cache: boolean): Promise<{}>;