@edenapp/types 0.6.3 → 0.6.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.
- package/CHANGELOG.md +2 -0
- package/commands.generated.d.ts +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/commands.generated.d.ts
CHANGED
|
@@ -339,6 +339,13 @@ export interface FsCommands {
|
|
|
339
339
|
args: { path: string };
|
|
340
340
|
response: import("./index").FileStats;
|
|
341
341
|
};
|
|
342
|
+
/**
|
|
343
|
+
* Resolve an Eden path to the underlying OS path.
|
|
344
|
+
*/
|
|
345
|
+
"fs/resolve": {
|
|
346
|
+
args: { path: string };
|
|
347
|
+
response: { realPath: string };
|
|
348
|
+
};
|
|
342
349
|
/**
|
|
343
350
|
* Search for files and directories using glob patterns.
|
|
344
351
|
*/
|