@w6s/sdk
Version:
WorkPlusFE JavaScript SDK.
11 lines (10 loc) • 421 B
TypeScript
import { ExecOptions } from '../types/core';
import { PopNotificationParams, PopNotificationRes } from '../types/dialog';
export declare type Options = PopNotificationParams & ExecOptions<PopNotificationRes, void>;
/**
* @description 消息通知
* @param {Options}
* @module dialog
* @returns {PopNotificationRes}
*/
export declare function popNotification(options: Options): Promise<PopNotificationRes>;