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.
Display a toast notification that disappears after a specified duration.
success
fail
exception
none
// Success toast my.showToast({ type: 'success', content: 'Saved successfully', duration: 2000 }); // Error toast my.showToast({ type: 'fail', content: 'Operation failed', duration: 3000 }); // Plain text toast my.showToast({ content: 'Loading complete' });