Skip to content

Commit

Permalink
fix: add "other" type to FileAction (#154)
Browse files Browse the repository at this point in the history
Co-authored-by: Suzu Tomo <[email protected]>
  • Loading branch information
nnmrts and kamekyame authored Dec 27, 2021
1 parent 8dce831 commit 832ceaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/watcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const logger = log.create("path");

/** Represents a change in the filesystem.
* Should reflect the Deno.FsEvent. */
type FileAction = "any" | "access" | "create" | "modify" | "remove";
type FileAction = "any" | "access" | "create" | "modify" | "remove" | "other";

/** A file that was changed, created or removed */
export interface FileEvent {
Expand Down

0 comments on commit 832ceaf

Please sign in to comment.