zhizhi/node_modules/dingtalk-jsapi/api/biz/user/get.d.ts

24 lines
627 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 获取当前登录用户信息 请求参数定义
* @apiName biz.user.get
*/
export interface IBizUserGetParams {
/** 是否允许无组织用户 4.6.37以上版本支持) */
allowNoOrgUser?: boolean;
[key: string]: any;
}
/**
* 获取当前登录用户信息 返回结果定义
* @apiName biz.user.get
*/
export interface IBizUserGetResult {
[key: string]: any;
}
/**
* 获取当前登录用户信息
* @apiName biz.user.get
* @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0
*/
export declare function get$(params: IBizUserGetParams): Promise<IBizUserGetResult>;
export default get$;