export interface Params { phoneNumber: string; } /** * * @name makePhoneCall * @title 电话拨号 * @param {number|string} phoneNumber 手机号码 * @return {string} code - 200:成功 | 404:失败 * @return {string} msg - 响应信息 * @return {unknown} data - 响应数据 * @fragment featch(params) { return suplink.makePhoneCall(params) } * @example * import { makePhoneCall } from '@suplink/jssdk'; * * makePhoneCall({ phoneNumber: 110 }).then((res) => console.log(res)) */ export default function makePhoneCall(params: Params): Promise>;