dingtalk-jsapi
Version:
钉钉 模块化 多端统一 API
22 lines (21 loc) • 582 B
TypeScript
import { ICommonAPIParams } from '../../constant/types';
/**
* 获取账号类型 请求参数定义
* @apiName getAccountType
*/
export interface IUnionGetAccountTypeParams extends ICommonAPIParams {
}
/**
* 获取账号类型 返回结果定义
* @apiName getAccountType
*/
export interface IUnionGetAccountTypeResult {
isOversea: boolean;
accountType: string;
}
/**
* 获取账号类型
* @apiName getAccountType
*/
export declare function getAccountType$(params: IUnionGetAccountTypeParams): Promise<IUnionGetAccountTypeResult>;
export default getAccountType$;