Module Async_inotify.Event

module Event: sig .. end

type move = 
| Away of string
| Into of string
| Move of string * string
type t = 
| Created of string
| Unlinked of string
| Modified of string
| Moved of move
val to_string : t -> string