memfs 4.44.0 → 4.45.0

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.
@@ -1 +1,6 @@
1
- export type { PathLike, symlink } from 'node:fs';
1
+ import type { Buffer } from './buffer';
2
+ import type { URL } from './url';
3
+ export type PathLike = string | Buffer | URL;
4
+ export declare namespace symlink {
5
+ type Type = 'dir' | 'file' | 'junction';
6
+ }
@@ -1,3 +1,4 @@
1
1
  "use strict";
2
+ // Inlined types from node:fs to avoid implicit dependencies
2
3
  Object.defineProperty(exports, "__esModule", { value: true });
3
4
  //# sourceMappingURL=fs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"fs.js","sourceRoot":"","sources":["../../../src/vendor/node/fs.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"fs.js","sourceRoot":"","sources":["../../../src/vendor/node/fs.ts"],"names":[],"mappings":";AAAA,4DAA4D"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memfs",
3
- "version": "4.44.0",
3
+ "version": "4.45.0",
4
4
  "description": "In-memory file-system with Node's fs API.",
5
5
  "keywords": [
6
6
  "fs",