ratatui_kit/element/mod.rs
1mod key;
2pub use key::ElementKey;
3mod any_element;
4pub use any_element::AnyElement;
5mod element_ext;
6pub use element_ext::ElementExt;
7#[allow(clippy::module_inception)]
8mod element;
9pub use element::Element;
10mod extend_with_elements;
11pub use extend_with_elements::{ExtendWithElements, extend_with_elements};
12
13pub trait ElementType {
14 type Props<'a>
15 where
16 Self: 'a;
17}