diff options
Diffstat (limited to 'ext/fs/interface.rs')
-rw-r--r-- | ext/fs/interface.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fs/interface.rs b/ext/fs/interface.rs index 6036f8228..cb6fc4f63 100644 --- a/ext/fs/interface.rs +++ b/ext/fs/interface.rs @@ -69,10 +69,10 @@ pub enum FsFileType { Junction, } +/// WARNING: This is part of the public JS Deno API. #[derive(Serialize)] #[serde(rename_all = "camelCase")] pub struct FsDirEntry { - pub parent_path: String, pub name: String, pub is_file: bool, pub is_directory: bool, |