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

23 lines
541 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName showToast
*/
export interface IUnionShowToastParams extends ICommonAPIParams {
type: string;
content: string;
duration?: number;
}
/**
*
* @apiName showToast
*/
export interface IUnionShowToastResult {
}
/**
*
* @apiName showToast
*/
export declare function showToast$(params: IUnionShowToastParams): Promise<IUnionShowToastResult>;
export default showToast$;