use super::fs::FileKind;
use std::sync::Arc;
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct FileTreeEvent {
pub path: Arc<str>,
pub kind: FileKind,
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct FileTreeToggleEvent {
pub path: Arc<str>,
pub kind: FileKind,
pub expanded: bool,
}