@types/ssh2
Advanced tools
Comparing version 0.5.45 to 0.5.46
@@ -8,2 +8,3 @@ // Type definitions for ssh2 v0.5.x | ||
// Tom Xu <https://github.com/hengkx> | ||
// Leo Toneff <https://github.com/bragle> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -28,2 +29,3 @@ | ||
ReadFileOptions, | ||
WriteFileOptions, | ||
ReadStreamOptions, | ||
@@ -1315,2 +1317,20 @@ WriteStreamOptions, | ||
* (Client-only) | ||
* Writes data to a file | ||
*/ | ||
writeFile(remotePath: string, data: string | Buffer, options: WriteFileOptions, callback?: (err: any) => void): void; | ||
/** | ||
* (Client-only) | ||
* Writes data to a file | ||
*/ | ||
writeFile(remotePath: string, data: string | Buffer, encoding: string, callback?: (err: any) => void): void; | ||
/** | ||
* (Client-only) | ||
* Writes data to a file | ||
*/ | ||
writeFile(remotePath: string, data: string | Buffer, callback?: (err: any) => void): void; | ||
/** | ||
* (Client-only) | ||
* Returns a new writable stream for `path`. | ||
@@ -1317,0 +1337,0 @@ */ |
{ | ||
"name": "@types/ssh2", | ||
"version": "0.5.45", | ||
"version": "0.5.46", | ||
"description": "TypeScript definitions for ssh2", | ||
@@ -31,2 +31,7 @@ "license": "MIT", | ||
"githubUsername": "hengkx" | ||
}, | ||
{ | ||
"name": "Leo Toneff", | ||
"url": "https://github.com/bragle", | ||
"githubUsername": "bragle" | ||
} | ||
@@ -46,4 +51,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "d69552cbda1da5afe063c2523a6162b97168688331585fc889548df21cb7c27b", | ||
"typeScriptVersion": "3.2" | ||
"typesPublisherContentHash": "d5afc6a44c56ee1de03e5405e49325d64f1ef4f6ce707f20b7d0bc78d320e93e", | ||
"typeScriptVersion": "3.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 27 Oct 2020 06:24:15 GMT | ||
* Last updated: Thu, 03 Dec 2020 00:14:55 GMT | ||
* Dependencies: [@types/ssh2-streams](https://npmjs.com/package/@types/ssh2-streams), [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by [Qubo](https://github.com/tkQubo), [Ron Buckton](https://github.com/rbuckton), [Will Boyce](https://github.com/wrboyce), [Lucas Motta](https://github.com/lucasmotta), and [Tom Xu](https://github.com/hengkx). | ||
These definitions were written by [Qubo](https://github.com/tkQubo), [Ron Buckton](https://github.com/rbuckton), [Will Boyce](https://github.com/wrboyce), [Lucas Motta](https://github.com/lucasmotta), [Tom Xu](https://github.com/hengkx), and [Leo Toneff](https://github.com/bragle). |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
65276
1413