@types/ftpd
Advanced tools
Comparing version 0.2.32 to 0.2.33
@@ -133,9 +133,9 @@ // Type definitions for ftpd 0.2.11 | ||
unlink: (path: string, callback?: (err?: NodeJS.ErrnoException) => void) => void; | ||
readdir: (path: string, callback?: (err: NodeJS.ErrnoException, files: string[]) => void) => void; | ||
readdir: (path: string, callback?: (err?: NodeJS.ErrnoException, files?: string[]) => void) => void; | ||
mkdir: ((path: string, callback?: (err?: NodeJS.ErrnoException) => void) => void) | ||
| ((path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void) => void) | ||
| ((path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void) => void); | ||
open: ((path: string, flags: string, callback?: (err: NodeJS.ErrnoException, fd: number) => any) => void) | ||
| ((path: string, flags: string, mode: number, callback?: (err: NodeJS.ErrnoException, fd: number) => any) => void) | ||
| ((path: string, flags: string, mode: string, callback?: (err: NodeJS.ErrnoException, fd: number) => any) => void); | ||
open: ((path: string, flags: string, callback?: (err?: NodeJS.ErrnoException, fd?: number) => any) => void) | ||
| ((path: string, flags: string, mode: number, callback?: (err?: NodeJS.ErrnoException, fd?: number) => any) => void) | ||
| ((path: string, flags: string, mode: string, callback?: (err?: NodeJS.ErrnoException, fd?: number) => any) => void); | ||
close: (fd: number, callback?: (err?: NodeJS.ErrnoException) => void) => void; | ||
@@ -147,3 +147,3 @@ rmdir: (path: string, callback?: (err?: NodeJS.ErrnoException) => void) => void; | ||
*/ | ||
stat: (path: string, callback?: (err: NodeJS.ErrnoException, stats: fs.Stats) => any) => void; | ||
stat: (path: string, callback?: (err?: NodeJS.ErrnoException, stats?: fs.Stats) => any) => void; | ||
/** | ||
@@ -150,0 +150,0 @@ * if useReadFile option is not set or is false |
{ | ||
"name": "@types/ftpd", | ||
"version": "0.2.32", | ||
"version": "0.2.33", | ||
"description": "TypeScript definitions for ftpd", | ||
@@ -16,3 +16,3 @@ "license": "MIT", | ||
"type": "git", | ||
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
}, | ||
@@ -24,4 +24,4 @@ "scripts": {}, | ||
}, | ||
"typesPublisherContentHash": "e984dc6942bdbeb9302c6c1191ba7d266e348e27537033058080b9505af7aea3", | ||
"typesPublisherContentHash": "8a4bd9ece714e1ba3d9a76f67eb095c0930359340410ea91653938c5be219936", | ||
"typeScriptVersion": "2.0" | ||
} |
@@ -8,6 +8,6 @@ # Installation | ||
# Details | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ftpd | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ftpd | ||
Additional Details | ||
* Last updated: Tue, 13 Feb 2018 20:54:40 GMT | ||
* Last updated: Mon, 10 Sep 2018 22:02:19 GMT | ||
* Dependencies: events, fs, net, tls, node | ||
@@ -14,0 +14,0 @@ * Global values: none |
Sorry, the diff of this file is not supported yet
11649