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

23 lines
557 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName openMicroApp
*/
export interface IUnionOpenMicroAppParams extends ICommonAPIParams {
appId: string;
corpId: string;
agentId: string;
}
/**
*
* @apiName openMicroApp
*/
export interface IUnionOpenMicroAppResult {
}
/**
*
* @apiName openMicroApp
*/
export declare function openMicroApp$(params: IUnionOpenMicroAppParams): Promise<IUnionOpenMicroAppResult>;
export default openMicroApp$;