clientnode 4.0.1394 → 4.0.1396
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/dist/filesystem.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/scope.js +1 -1
- package/dist/string.d.ts +45 -45
- package/dist/utility.d.ts +15 -3
- package/dist/utility.js +1 -1
- package/package.json +8 -8
package/dist/filesystem.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AnyFunction, Encoding, File, FileTraverseResult } from './type';
|
|
2
2
|
import { ObjectEncodingOptions } from 'node:fs';
|
|
3
|
-
export declare const mkdirSync: typeof import("node:fs").mkdirSync | null, readdirSync: typeof import("node:fs").readdirSync | null, readFileSync: typeof import("node:fs").readFileSync | null, statSync: import("node:fs").
|
|
3
|
+
export declare const mkdirSync: typeof import("node:fs").mkdirSync | null, readdirSync: typeof import("node:fs").readdirSync | null, readFileSync: typeof import("node:fs").readFileSync | null, statSync: typeof import("node:fs").statSync | null, writeFileSync: typeof import("node:fs").writeFileSync | null;
|
|
4
4
|
/**
|
|
5
5
|
* Copies given source directory via path to given target directory location
|
|
6
6
|
* with same target name as source file has or copy to given complete target
|