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

24 lines
671 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName notifyTranslateEvent
*/
export interface IUnionNotifyTranslateEventParams extends ICommonAPIParams {
token: string;
pageId: string;
bizName?: string;
eventName: string;
}
/**
*
* @apiName notifyTranslateEvent
*/
export interface IUnionNotifyTranslateEventResult {
}
/**
*
* @apiName notifyTranslateEvent
*/
export declare function notifyTranslateEvent$(params: IUnionNotifyTranslateEventParams): Promise<IUnionNotifyTranslateEventResult>;
export default notifyTranslateEvent$;