add removeKey and replaceKey methods

This commit is contained in:
2016-04-26 05:04:36 +02:00
parent 1663d9a266
commit 1d17dd1b84
2 changed files with 13 additions and 1 deletions

View File

@@ -3,6 +3,10 @@ import plugins = require("./smartssh.plugins");
import classes = require("./smartssh.classes");
export let sshKeyArrayFromDir = function(dirArg:string):classes.sshKey[]{
let sshKeyArray = [];
let sshKeyArray = []; //TODO
return sshKeyArray;
}
export let getKeyIndex = function(hostArg:string){
return 0; //TODO
}