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

23 lines
777 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.checkPassword
*/
export interface IBizUserCheckPasswordParams {
[key: string]: any;
}
/**
* 验证钉钉密码已验证当前用户是否当前钉钉账户持有人 返回结果定义
* @apiName biz.user.checkPassword
*/
export interface IBizUserCheckPasswordResult {
/** 结果int 1 success2 fail */
result: number;
}
/**
* 验证钉钉密码已验证当前用户是否当前钉钉账户持有人
* @apiName biz.user.checkPassword
* @supportVersion ios: 4.5.8 android: 4.5.8
*/
export declare function checkPassword$(params: IBizUserCheckPasswordParams): Promise<IBizUserCheckPasswordResult>;
export default checkPassword$;