Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions sdk/typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion sdk/typescript/src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export type FsErrorCode =
| 'ENOTEMPTY' // Directory not empty
| 'EPERM' // Operation not permitted
| 'EINVAL' // Invalid argument
| 'ENOSYS'; // Function not implemented (use for symlinks)
| 'ENOSPC' // Not enough space
| 'ENOSYS' // Function not implemented (use for symlinks)

/**
* Filesystem syscall names for error reporting.
Expand All @@ -25,6 +26,7 @@ export type FsSyscall =
| 'rename'
| 'scandir'
| 'copyfile'
| 'write'
| 'access';

export interface ErrnoException extends Error {
Expand Down
Loading