Skip to content

Commit

Permalink
fix(fs-watch): Fix DebouncedEvent type to match what notify-rs returns
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Dec 22, 2023
1 parent 38b5d37 commit c79bdc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/fs/guest-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1125,8 +1125,8 @@ type RawEventKind =
* @since 2.0.0
*/
type DebouncedEvent =
| { kind: "any"; path: string }
| { kind: "AnyContinous"; path: string };
| { kind: "Any"; path: string }[]
| { kind: "AnyContinuous"; path: string }[];

/**
* @since 2.0.0
Expand Down

0 comments on commit c79bdc7

Please sign in to comment.