@w6s/sdk
Version:
WorkPlusFE JavaScript SDK.
12 lines (11 loc) • 455 B
TypeScript
import { ExecOptions } from '../types/core';
import { GetServerInfoRes } from '../types/auth';
export declare type ServerInfoOptions = ExecOptions<GetServerInfoRes, void>;
/**
* 获取当前app请求后台api地址
* @description 获取当前app请求后台api地址
* @param {ServerInfoOptions} [options]
* @module auth
* @returns api_url
*/
export default function getServerInfo(options?: ServerInfoOptions): Promise<GetServerInfoRes>;