@e-mc/file-manager 0.13.9 → 0.14.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.
- package/README.md +11 -11
- package/index.d.ts +2 -2
- package/index.js +307 -310
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @e-mc/file-manager
|
|
2
2
|
|
|
3
|
-
* NodeJS
|
|
3
|
+
* NodeJS 20 (Minimum 18)
|
|
4
4
|
* ES2022
|
|
5
5
|
|
|
6
6
|
## General Usage
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
## Interface
|
|
11
11
|
|
|
12
|
-
* [View Source](https://www.unpkg.com/@e-mc/types@0.
|
|
12
|
+
* [View Source](https://www.unpkg.com/@e-mc/types@0.14.0/lib/index.d.ts)
|
|
13
13
|
|
|
14
14
|
```typescript
|
|
15
15
|
import type { ChecksumValue, DataSource, IncrementalMatch, TaskAction } from "./squared";
|
|
@@ -297,15 +297,15 @@ NOTE: **FileManager** is a sub-class of [Host](https://www.npmjs.com/package/@e-
|
|
|
297
297
|
|
|
298
298
|
## References
|
|
299
299
|
|
|
300
|
-
- https://www.unpkg.com/@e-mc/types@0.
|
|
301
|
-
- https://www.unpkg.com/@e-mc/types@0.
|
|
302
|
-
- https://www.unpkg.com/@e-mc/types@0.
|
|
303
|
-
- https://www.unpkg.com/@e-mc/types@0.
|
|
304
|
-
- https://www.unpkg.com/@e-mc/types@0.
|
|
305
|
-
- https://www.unpkg.com/@e-mc/types@0.
|
|
306
|
-
- https://www.unpkg.com/@e-mc/types@0.
|
|
307
|
-
- https://www.unpkg.com/@e-mc/types@0.
|
|
308
|
-
- https://www.unpkg.com/@e-mc/types@0.
|
|
300
|
+
- https://www.unpkg.com/@e-mc/types@0.14.0/lib/squared.d.ts
|
|
301
|
+
- https://www.unpkg.com/@e-mc/types@0.14.0/lib/asset.d.ts
|
|
302
|
+
- https://www.unpkg.com/@e-mc/types@0.14.0/lib/core.d.ts
|
|
303
|
+
- https://www.unpkg.com/@e-mc/types@0.14.0/lib/filemanager.d.ts
|
|
304
|
+
- https://www.unpkg.com/@e-mc/types@0.14.0/lib/logger.d.ts
|
|
305
|
+
- https://www.unpkg.com/@e-mc/types@0.14.0/lib/module.d.ts
|
|
306
|
+
- https://www.unpkg.com/@e-mc/types@0.14.0/lib/node.d.ts
|
|
307
|
+
- https://www.unpkg.com/@e-mc/types@0.14.0/lib/request.d.ts
|
|
308
|
+
- https://www.unpkg.com/@e-mc/types@0.14.0/lib/settings.d.ts
|
|
309
309
|
|
|
310
310
|
* https://www.npmjs.com/package/@types/node
|
|
311
311
|
|
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { FileManagerConstructor } from '@e-mc/types/lib';
|
|
1
|
+
import type { FileManagerConstructor, IFileManager } from '@e-mc/types/lib';
|
|
2
2
|
import type { ExternalAsset } from '@e-mc/types/lib/asset';
|
|
3
3
|
|
|
4
|
-
declare const FileManager: FileManagerConstructor<ExternalAsset>;
|
|
4
|
+
declare const FileManager: FileManagerConstructor<IFileManager, ExternalAsset>;
|
|
5
5
|
|
|
6
6
|
export = FileManager;
|