Codebase list node-fs-extra / 6322d09
Update upstream source from tag 'upstream/9.0.1+_9.0.6' Update to upstream version '9.0.1+~9.0.6' with Debian dir 1b20855f32068eadf735e9759be35dd70d7a6723 Xavier Guimard 3 years ago
3 changed file(s) with 7 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
77 Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fs-extra.
88
99 ### Additional Details
10 * Last updated: Wed, 11 Nov 2020 22:00:34 GMT
10 * Last updated: Wed, 23 Dec 2020 21:09:59 GMT
1111 * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
1212 * Global values: none
1313
4141 export function createSymlinkSync(src: string, dest: string, type: SymlinkType): void;
4242
4343 export function ensureDir(path: string, options?: EnsureOptions | number): Promise<void>;
44 export function ensureDir(path: string, callback?: (err: Error) => void): void;
4445 export function ensureDir(path: string, options?: EnsureOptions | number, callback?: (err: Error) => void): void;
4546 export function ensureDirSync(path: string, options?: EnsureOptions | number): void;
4647
183184 * @param callback No arguments other than a possible exception are given to the completion callback.
184185 */
185186 export function mkdir(path: PathLike, options: Mode | fs.MakeDirectoryOptions | null, callback: (err: NodeJS.ErrnoException) => void): void;
186 export function mkdir(path: PathLike): Promise<void>;
187 export function mkdir(path: PathLike, options?: Mode | fs.MakeDirectoryOptions | null): Promise<void>;
188 export function mkdirSync(path: PathLike, options?: Mode | fs.MakeDirectoryOptions | null): void;
187189
188190 export function open(path: PathLike, flags: string | number, callback: (err: NodeJS.ErrnoException, fd: number) => void): void;
189191 export function open(path: PathLike, flags: string | number, mode: Mode, callback: (err: NodeJS.ErrnoException, fd: number) => void): void;
00 {
11 "name": "@types/fs-extra",
2 "version": "9.0.4",
2 "version": "9.0.6",
33 "description": "TypeScript definitions for fs-extra",
44 "license": "MIT",
55 "contributors": [
6060 "dependencies": {
6161 "@types/node": "*"
6262 },
63 "typesPublisherContentHash": "666988b2f93eba2d2cc77deee0938dbda1f4b3b29911d3060a68c185016cd0f3",
64 "typeScriptVersion": "3.2"
63 "typesPublisherContentHash": "97bc0f0de513c1c72257c200b261337e5b51de6be5bdac69401fd28f27d70c48",
64 "typeScriptVersion": "3.3"
6565 }