@zenfs/core 0.9.3 → 0.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -173,6 +173,9 @@ declare const IndexFS_base: (abstract new (...args: any[]) => {
173
173
  stat(path: string, cred: Cred): Promise<Stats>;
174
174
  statSync(path: string, cred: Cred): Stats;
175
175
  openFile(path: string, flag: string, cred: Cred): Promise<import("../file.js").File>;
176
+ /**
177
+ * Constructs a new FileIndex.
178
+ */
176
179
  openFileSync(path: string, flag: string, cred: Cred): import("../file.js").File;
177
180
  readdir(path: string, cred: Cred): Promise<string[]>;
178
181
  readdirSync(path: string, cred: Cred): string[];