Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
toast, системные уведомления, диалог подтверждения
api.UI.toast(message, duration = 3000)
duration
api.UI.toast('Скорость: 1.5×', 1500);
api.UI.notify(title, body?, opts?)
api.UI.notify('Новый трек', 'Imagine Dragons — Bones');
const ok = await api.UI.showConfirm(title, body) // → true (OK) | false (Отмена)
const ok = await api.UI.showConfirm('Сброс', 'Удалить все данные?'); if (ok) api.Storage.set('config', null);
toast
notify
showConfirm