@zenfs/core 0.3.4 → 0.3.5
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.
- package/dist/FileIndex.d.ts +2 -0
- package/dist/browser.min.js +3 -3
- package/dist/browser.min.js.map +3 -3
- package/package.json +1 -1
- package/readme.md +1 -1
package/dist/FileIndex.d.ts
CHANGED
|
@@ -211,6 +211,7 @@ declare const SyncFileIndexFS_base: (abstract new (...args: any[]) => {
|
|
|
211
211
|
syncSync(path: string, data: Uint8Array, stats: Readonly<Stats>): void;
|
|
212
212
|
}) & (abstract new (index: ListingTree) => FileIndexFS<unknown>);
|
|
213
213
|
export declare abstract class SyncFileIndexFS<TIndex> extends SyncFileIndexFS_base {
|
|
214
|
+
_index: FileIndex<TIndex>;
|
|
214
215
|
protected statFileInode(inode: IndexFileInode<TIndex>, path: string): Promise<Stats>;
|
|
215
216
|
protected openFileInode(inode: IndexFileInode<TIndex>, path: string, flag: FileFlag): Promise<NoSyncFile<this>>;
|
|
216
217
|
}
|
|
@@ -228,6 +229,7 @@ declare const AsyncFileIndexFS_base: (abstract new (...args: any[]) => {
|
|
|
228
229
|
syncSync(path: string, data: Uint8Array, stats: Readonly<Stats>): void;
|
|
229
230
|
}) & (abstract new (index: ListingTree) => FileIndexFS<unknown>);
|
|
230
231
|
export declare abstract class AsyncFileIndexFS<TIndex> extends AsyncFileIndexFS_base {
|
|
232
|
+
_index: FileIndex<TIndex>;
|
|
231
233
|
protected statFileInodeSync(): Stats;
|
|
232
234
|
protected openFileInodeSync(): NoSyncFile<this>;
|
|
233
235
|
}
|