revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
1
2
3
4
5
6
7
8
9
10
//! Notification Center for managing toasts and alerts
//!
//! Provides a centralized system for displaying notifications,
//! alerts, and status messages with queuing and auto-dismiss.

mod core;
mod types;

pub use core::{notification_center, NotificationCenter};
pub use types::*;