1 2 3 4 5 6 7 8 9 10 11
//! Attribute traits shared by built-in and custom components. mod common; mod event; mod font; mod gesture; pub use common::{ArkUIAttributeBasic, ArkUICommonAttribute}; pub use event::ArkUIEvent; pub use font::ArkUICommonFontAttribute; pub use gesture::ArkUIGesture;