From f41f3161eb5f2ece93e81c6048b79ac89eb672c7 Mon Sep 17 00:00:00 2001 From: joshuaboud Date: Mon, 30 May 2022 13:19:14 -0300 Subject: [PATCH] add error callback typedef --- navigator/src/globalTypedefs.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/navigator/src/globalTypedefs.js b/navigator/src/globalTypedefs.js index e3ffb5a..8ca68be 100644 --- a/navigator/src/globalTypedefs.js +++ b/navigator/src/globalTypedefs.js @@ -16,3 +16,8 @@ * @property {Boolean} searchInDirectory.ignoreCase - false: case sensitive, true: case insensitive * @property {Boolean} searchInDirectory.fullRegex - false: glob matching, true: full regex mode */ + +/** + * @callback ErrorCallback + * @param {Error} error - The error to handle + */