From 237b7227a15b8dc5350fe87eadd547ed1146c6fe Mon Sep 17 00:00:00 2001 From: Liam Martens Date: Mon, 27 Nov 2023 08:51:24 -0500 Subject: [PATCH] chore: code order --- src/vanilla/utils/watch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vanilla/utils/watch.ts b/src/vanilla/utils/watch.ts index 95365ee8..c1022304 100644 --- a/src/vanilla/utils/watch.ts +++ b/src/vanilla/utils/watch.ts @@ -4,7 +4,7 @@ type Cleanup = () => void type WatchGet = (proxyObject: T) => T type WatchCallback = ( get: WatchGet, -) => Cleanup | void | Promise | undefined +) => Cleanup | void | Promise | undefined type WatchOptions = { sync?: boolean }