use rolldown_common::WatcherChangeKind;
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
pub struct FileChangeEvent {
pub path: String,
pub kind: WatcherChangeKind,
}
impl FileChangeEvent {
pub fn new(path: String, kind: WatcherChangeKind) -> Self {
Self { path, kind }
}
}