smartssh/ts/smartssh.classes.helpers.ts

12 lines
329 B
TypeScript

import "typings-global"
import plugins = require("./smartssh.plugins");
import classes = require("./smartssh.classes");
export let sshKeyArrayFromDir = function(dirArg:string):classes.sshKey[]{
let sshKeyArray = []; //TODO
return sshKeyArray;
}
export let getKeyIndex = function(hostArg:string){
return 0; //TODO
}