core-3nweb-client-lib 0.47.3 → 0.47.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.
|
@@ -61,9 +61,7 @@ declare function readlink(path: string, options: BufferEncodingOption): Promise<
|
|
|
61
61
|
declare function readlink(path: string, options?: ObjectEncodingOptions | string | null): Promise<string | Buffer>;
|
|
62
62
|
declare function lstat(path: string, opts?: StatOptions): Promise<Stats>;
|
|
63
63
|
declare function stat(path: string, opts?: StatOptions): Promise<Stats>;
|
|
64
|
-
declare function readdir(path: string
|
|
65
|
-
recursive?: boolean;
|
|
66
|
-
}): Promise<string[]>;
|
|
64
|
+
declare function readdir(path: string): Promise<string[]>;
|
|
67
65
|
declare function rmdir(path: string, options?: RmDirOptions): Promise<void>;
|
|
68
66
|
declare function unlink(path: string): Promise<void>;
|
|
69
67
|
declare function rename(oldPath: string, newPath: string): Promise<void>;
|
|
@@ -21,9 +21,7 @@ export declare const appendFile: (path: string, data: string | Uint8Array, optio
|
|
|
21
21
|
(path: string, options?: (import("fs").ObjectEncodingOptions & import("events").Abortable & {
|
|
22
22
|
flag?: import("fs").OpenMode | undefined;
|
|
23
23
|
}) | BufferEncoding | null): Promise<string | Buffer>;
|
|
24
|
-
}, readdir: (path: string
|
|
25
|
-
recursive?: boolean;
|
|
26
|
-
}) => Promise<string[]>, readlink: {
|
|
24
|
+
}, readdir: (path: string) => Promise<string[]>, readlink: {
|
|
27
25
|
(path: string, options?: import("fs").ObjectEncodingOptions | BufferEncoding | null): Promise<string>;
|
|
28
26
|
(path: string, options: import("fs").BufferEncodingOption): Promise<Buffer>;
|
|
29
27
|
(path: string, options?: import("fs").ObjectEncodingOptions | string | null): Promise<string | Buffer>;
|