blob: 4d000490491fdc30ef41dce0cb421f18fb339984 (
plain) (
tree)
|
|
use crate::{Event, Hasher};
pub type Subscription<T> = iced_core::Subscription<Hasher, Input, T>;
pub type Input = futures::channel::mpsc::Receiver<Event>;
pub use iced_core::subscription::Recipe;
|