tui-vfx-shadow 0.2.1

Shadow rendering effects for TUI applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// <FILE>crates/tui-vfx-shadow/src/types/mod.rs</FILE> - <DESC>Type definitions for shadow rendering</DESC>
// <VERS>VERSION: 0.1.0</VERS>
// <WCTX>New crate for theme-aware shadow rendering with multiple styles</WCTX>
// <CLOG>Initial creation - re-export ShadowStyle, ShadowConfig, ShadowEdges</CLOG>

//! Type definitions for shadow rendering.

mod shadow_config;
mod shadow_edge;
mod shadow_style;

pub use shadow_config::ShadowConfig;
pub use shadow_edge::ShadowEdges;
pub use shadow_style::ShadowStyle;

// <FILE>crates/tui-vfx-shadow/src/types/mod.rs</FILE> - <DESC>Type definitions for shadow rendering</DESC>
// <VERS>END OF VERSION: 0.1.0</VERS>