From c1ccab398b8df7e7f5b8257dd22780e6de25e41d Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Tue, 26 Nov 2024 11:52:46 +0100 Subject: [PATCH] Update plugins/fs/guest-js/index.ts --- plugins/fs/guest-js/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/fs/guest-js/index.ts b/plugins/fs/guest-js/index.ts index 897bc780..448335c4 100644 --- a/plugins/fs/guest-js/index.ts +++ b/plugins/fs/guest-js/index.ts @@ -1326,6 +1326,7 @@ async function watchImmediate( * Get the size of a file or directory. For files, the `stat` functions can be used as well. * * If `path` is a directory, this function will recursively iterate over every file and every directory inside of `path` and therefore will be very time consuming if used on larger directories. + * * @example * ```typescript * import { size, BaseDirectory } from '@tauri-apps/plugin-fs';