/** * Different event types for the watcher of the file system (chokidar) * * - add: a file got created * - addDir: a folder got created * - change: a file changed * - unlink: a file got removed * - unlinkDir: a folder got removed * */ export type WatchEventType = | "add" | "addDir" | "change" | "unlink" | "unlinkDir";