From 6357b02016916a8c1d49eeaeb9ec56659ec84183 Mon Sep 17 00:00:00 2001 From: Ankit Mohanty Date: Sat, 21 Mar 2026 13:12:54 +0530 Subject: [PATCH] docs: fix missing array type annotation for extensions in showOpenDialog Filter --- docs/api/os.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/os.md b/docs/api/os.md index 108a1cfd..ead74614 100644 --- a/docs/api/os.md +++ b/docs/api/os.md @@ -166,7 +166,7 @@ Shows the file open dialog. You can use this function to obtain paths of existin #### Filter - `name` String: Filter name. -- `extensions` String: Array of file extensions. Eg: `['jpg', 'png']` +- `extensions` String[]: Array of file extensions. Eg: `['jpg', 'png']` ### Return Object (awaited): An array of selected entries.