mirror of
https://codeberg.org/waydeer/layer-shika.git
synced 2025-11-17 23:14:23 +00:00
17 lines
447 B
Rust
17 lines
447 B
Rust
#![allow(clippy::pub_use)]
|
|
|
|
mod composition {
|
|
pub use layer_shika_composition::*;
|
|
}
|
|
|
|
pub use composition::{
|
|
AnchorEdges, Error, EventLoopHandle, KeyboardInteractivity, Layer, LayerShika, PopupAt,
|
|
PopupHandle, PopupPositioningMode, PopupRequest, PopupSize, PopupWindow, Result, RuntimeState,
|
|
WindowingSystem,
|
|
};
|
|
|
|
pub use composition::{slint, slint_interpreter};
|
|
|
|
pub mod calloop {
|
|
pub use layer_shika_composition::calloop::*;
|
|
}
|