2016-04-25 02:06:20 +00:00
|
|
|
/// <reference path="./typings/main.d.ts" />
|
|
|
|
import plugins = require("./smartssh.plugins");
|
|
|
|
import classes = require("./smartssh.classes");
|
|
|
|
|
|
|
|
export let sshKeyArrayFromDir = function(dirArg:string):classes.sshKey[]{
|
2016-04-26 03:04:36 +00:00
|
|
|
let sshKeyArray = []; //TODO
|
2016-04-25 02:06:20 +00:00
|
|
|
return sshKeyArray;
|
2016-04-26 03:04:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export let getKeyIndex = function(hostArg:string){
|
|
|
|
return 0; //TODO
|
2016-04-25 02:06:20 +00:00
|
|
|
}
|