Informational banner for alerts and messages.
import { Notification } from 'nikcli-tui';
new Notification({ parent: screen, message: 'Heads up!' });
npm run tsx:core-gallery
npm i nikcli-tui
new Notification({ parent: screen, title: 'Info', message: 'Saved', type: 'success', duration: 2000, autoClose: true });
Notification.info('Network check'); Notification.success('Deployed', 'Success'); Notification.warning('High load'); Notification.error('Failed');
autoClose