@e-mc/module 0.8.4 → 0.8.6

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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2023 An Pham
1
+ Copyright 2024 An Pham
2
2
 
3
3
  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4
4
 
package/README.md CHANGED
@@ -9,25 +9,24 @@
9
9
 
10
10
  ## Interface
11
11
 
12
- - https://www.unpkg.com/@e-mc/types@0.8.4/lib/index.d.ts
12
+ - https://www.unpkg.com/@e-mc/types@0.8.6/lib/index.d.ts
13
13
 
14
14
  ```typescript
15
15
  import type { LogStatus } from "./squared";
16
16
 
17
17
  import type { IHost } from "./index";
18
18
  import type { IAbortComponent, IPermission } from "./core";
19
- import type { ExecCommand, LOG_TYPE, LogArguments, LogComponent, LogDate, LogFailOptions, LogMessageOptions, LogOptions, LogProcessOptions, LogTime, LogType, LogValue, STATUS_TYPE, StatusType } from "./logger";
19
+ import type { LOG_TYPE, STATUS_TYPE, ExecCommand, LogArguments, LogComponent, LogDate, LogFailOptions, LogMessageOptions, LogOptions, LogProcessOptions, LogTime, LogType, LogValue, StatusType } from "./logger";
20
20
  import type { AsHashOptions, CheckSemVerOptions, CopyDirOptions, CopyDirResult, CopyFileOptions, CreateDirOptions, DeleteFileOptions, GetTempDirOptions, MoveFileOptions, NormalizeFlags, ParseFunctionOptions, PermissionOptions, ProtocolType, ReadBufferOptions, ReadFileCallback, ReadFileOptions, ReadHashOptions, ReadTextOptions, RemoveDirOptions, WriteFileOptions } from "./module";
21
21
  import type { Settings } from "./node";
22
22
 
23
- import type { NoParamCallback } from "fs";
24
23
  import type { SpawnOptions } from "child_process";
25
24
  import type { BinaryLike } from "crypto";
25
+ import type { FileTypeResult } from "file-type";
26
+ import type { NoParamCallback } from "fs";
26
27
 
27
28
  import type * as EventEmitter from "events";
28
29
 
29
- import type { FileTypeResult } from "file-type";
30
-
31
30
  type BufferView = Buffer | string | NodeJS.ArrayBufferView;
32
31
  type CpuUsage = NodeJS.CpuUsage;
33
32
 
@@ -233,10 +232,10 @@ interface ModuleConstructor {
233
232
 
234
233
  ## References
235
234
 
236
- - https://www.unpkg.com/@e-mc/types@0.8.4/lib/core.d.ts
237
- - https://www.unpkg.com/@e-mc/types@0.8.4/lib/logger.d.ts
238
- - https://www.unpkg.com/@e-mc/types@0.8.4/lib/module.d.ts
239
- - https://www.unpkg.com/@e-mc/types@0.8.4/lib/node.d.ts
235
+ - https://www.unpkg.com/@e-mc/types@0.8.6/lib/core.d.ts
236
+ - https://www.unpkg.com/@e-mc/types@0.8.6/lib/logger.d.ts
237
+ - https://www.unpkg.com/@e-mc/types@0.8.6/lib/module.d.ts
238
+ - https://www.unpkg.com/@e-mc/types@0.8.6/lib/node.d.ts
240
239
 
241
240
  ## LICENSE
242
241