import { register } from '..' /** * UI相关接口 */ export namespace ui { /** * 弹出简单的文字对话框, 对话框关闭后执行回调 * * * * @param title 对话框标题, null 则为由客户端自行决定 * @param message 对话框文字 */ export const alert = async (title: string | null, message: string) => { return await register('ui/confirm', { message }) } }