summaryrefslogtreecommitdiff
path: root/cli/js/ops/fs
diff options
context:
space:
mode:
authordubiousjim <dubiousjim@gmail.com>2020-03-31 13:46:25 -0400
committerGitHub <noreply@github.com>2020-03-31 13:46:25 -0400
commitd4d0b5d90c8abc5867a389129ee185b2c1cf0f0f (patch)
treed2cd0f05cfc2e8e9b2c5d897d8dc2402bc53daea /cli/js/ops/fs
parenta86b07f2df20b6436291d77d9636061ede0b6c8e (diff)
Properly track isFile, isSymlink, isDirectory (#4541)
* Properly track isFile, isSymlink, isDirectory These don't exhaust all the possibilities, so none of them should be defined as "neither of the others". * empty
Diffstat (limited to 'cli/js/ops/fs')
-rw-r--r--cli/js/ops/fs/stat.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/js/ops/fs/stat.ts b/cli/js/ops/fs/stat.ts
index f455484c1..5d8860939 100644
--- a/cli/js/ops/fs/stat.ts
+++ b/cli/js/ops/fs/stat.ts
@@ -4,6 +4,7 @@ import { FileInfo, FileInfoImpl } from "../../file_info.ts";
export interface StatResponse {
isFile: boolean;
+ isDirectory: boolean;
isSymlink: boolean;
size: number;
modified: number;