Skip to content

Commit

Permalink
Minor review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 authored Jun 29, 2023
1 parent 583d21c commit 0193e1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/fs_core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ export class File {
}
}

// shim https://developer.mozilla.org/en-US/docs/Web/API/FileSystemSyncAccessHandle
// Shim for https://developer.mozilla.org/en-US/docs/Web/API/FileSystemSyncAccessHandle
// This is not part of the public interface.
export interface FileSystemSyncAccessHandle {
close(): undefined;
flush(): undefined;
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import WASI from "./wasi.js";
export { WASI };

export { Fd } from './fd.js';
export { File, SyncOPFSFile as OPFSFile, Directory } from "./fs_core.js";
export { File, SyncOPFSFile, Directory } from "./fs_core.js";
export { OpenFile, OpenDirectory, OpenSyncOPFSFile, PreopenDirectory } from "./fs_fd.js";
export { strace } from "./strace.js";

0 comments on commit 0193e1f

Please sign in to comment.