From ec51997364b0bf9d2e723ad9516775fae38647fa Mon Sep 17 00:00:00 2001 From: James Prevett Date: Wed, 16 Oct 2024 12:29:37 -0500 Subject: [PATCH] Fix ls type reference again --- commands/ls.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/ls.js b/commands/ls.js index 99fb88c..789af7f 100644 --- a/commands/ls.js +++ b/commands/ls.js @@ -1,6 +1,7 @@ -export {}; /// +/// // @ts-check +export {}; const { S_IFREG, S_IFDIR, S_IFCHR, S_IFBLK, S_IFIFO, S_IFLNK, S_IFSOCK, S_IFMT } = fs.constants;