Transient notification popup for quick feedback.
import { Toast } from 'nikcli-tui';
new Toast({ parent: screen, text: 'Saved!', type: 'success' });
npm run tsx:core-gallery
npm i nikcli-tui
new Toast({ parent: screen, text: 'Saved!', type: 'success', durationMs: 2000, position: 'top' });
const t = new Toast({ parent: screen, text: 'Sticky', durationMs: 0, closable: true }); setTimeout(() => t.close(), 1500);