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

23 lines
509 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName alert
*/
export interface IUnionAlertParams extends ICommonAPIParams {
title?: string;
content: string;
buttonText?: string;
}
/**
*
* @apiName alert
*/
export interface IUnionAlertResult {
}
/**
*
* @apiName alert
*/
export declare function alert$(params: IUnionAlertParams): Promise<IUnionAlertResult>;
export default alert$;