zhizhi/node_modules/dingtalk-jsapi/api/union/openChatByUserId.d.ts

22 lines
700 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName openChatByUserId
*/
export interface IUnionOpenChatByUserIdParams extends ICommonAPIParams {
corpId?: string;
userId: string;
}
/**
*
* @apiName openChatByUserId
*/
export interface IUnionOpenChatByUserIdResult {
}
/**
*
* @apiName openChatByUserId
*/
export declare function openChatByUserId$(params: IUnionOpenChatByUserIdParams): Promise<IUnionOpenChatByUserIdResult>;
export default openChatByUserId$;