UNPKG

@tb-app/web-view-api

Version:
11 lines (10 loc) 261 B
/** * 显示一个弱提示,可选择多少秒之后消失 */ export default function showToast(options?: { content?: string; type?: 'success' | 'fail' | 'exception' | 'none'; duration?: number; }): Promise<{ success: boolean; }>;